Skip to content

Retrieve Spend Limits

Get card's available spend limit
get/v1/cards/{card_token}/spend_limits

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.

Path Parameters
card_tokenstring
formatuuid
Returns
available_spend_limitobjectspend_limitobjectspend_velocityobjectCardSpendLimits
Request example Request
curl https://api.lithic.com/v1/cards/$CARD_TOKEN/spend_limits \
    -H "Authorization: $LITHIC_API_KEY"
200 Example
{
  "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
  }
}