v66

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

Get card's available spend limit

Get a Card's available spend limit, which is based on the spend limit configured on the Card and the amount already spent over the spend limit's duration. For example, if the Card has a monthly spend limit of $1000 configured, and has spent $600 in the last month, the available spend limit returned would be $400.

get/v1/cards/{card_token}/spend_limits

Path parameters

card_tokenstring uuid required

Response

OK

Example response

{
  "available_spend_limit": {
    "annually": 200000,
    "forever": 300000,
    "monthly": 200000
  },
  "spend_limit": {
    "annually": 500000,
    "forever": 500000,
    "monthly": 500000
  },
  "spend_velocity": {
    "annually": 300000,
    "forever": 200000,
    "monthly": 300000
  }
}