Skip to content

Retrieve Spend Limits

Get account's available spend limits
get/v1/accounts/{account_token}/spend_limits

Get an Account's available spend limits, which is based on the spend limit configured on the Account and the amount already spent over the spend limit's duration. For example, if the Account has a daily spend limit of $1000 configured, and has spent $600 in the last 24 hours, the available spend limit returned would be $400.

Path Parameters
account_tokenstring
formatuuid
Returns
available_spend_limitobjectspend_limitobjectspend_velocityobjectAccountSpendLimits
Request example Request
curl https://api.lithic.com/v1/accounts/$ACCOUNT_TOKEN/spend_limits \
    -H "Authorization: $LITHIC_API_KEY"
200 Example
{
  "available_spend_limit": {
    "daily": 100000,
    "lifetime": 300000,
    "monthly": 200000
  },
  "spend_limit": {
    "daily": 500000,
    "lifetime": 500000,
    "monthly": 500000
  },
  "spend_velocity": {
    "daily": 40000,
    "lifetime": 20000,
    "monthly": 30000
  }
}