v66

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-042174421.1 MB
Account

Get account's available 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.

get/v1/accounts/{account_token}/spend_limits

Path parameters

account_tokenstring uuid required

Globally unique identifier for account.

Response

OK

Example response

{
  "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
  }
}