Skip to main content
GET
/
cards
/
transactions
/
{cardId}
/
accumulated-spending
curl -X GET "https://api.cryptomate.me/cards/transactions/card_6f1e2a30-4a3c-4b2e-9a1d-5e8c9b7a1f23/accumulated-spending" \
  -H "x-api-key: $CRYPTOMATE_API_KEY"
{
  "daily_spending": 125.50,
  "weekly_spending": 450.00,
  "monthly_spending": 1800.75
}
Returns the amount already consumed against the card’s daily, weekly, and monthly spending limits. Use this alongside the card’s daily_limit, weekly_limit, and monthly_limit to compute the remaining available amount on each period. Requires an API key with access level 1 or higher.

Path parameters

cardId
string
required
Card identifier.

Response

daily_spending
number
Amount spent on the current day against the daily limit.
weekly_spending
number
Amount spent on the current week against the weekly limit.
monthly_spending
number
Amount spent on the current month against the monthly limit.
curl -X GET "https://api.cryptomate.me/cards/transactions/card_6f1e2a30-4a3c-4b2e-9a1d-5e8c9b7a1f23/accumulated-spending" \
  -H "x-api-key: $CRYPTOMATE_API_KEY"
{
  "daily_spending": 125.50,
  "weekly_spending": 450.00,
  "monthly_spending": 1800.75
}