Skip to main content
GET
/
cards
/
holding
/
balance
curl -X GET "https://api.cryptomate.me/cards/holding/balance" \
  -H "X-API-KEY: $CRYPTOMATE_API_KEY"
{
  "warranty_balance": 10000.00,
  "blockchain": "POLYGON",
  "deposit_address": "0x1234567890abcdef1234567890abcdef12345678",
  "deposit_tokens": {
    "USDC": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174",
    "USDT": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f"
  }
}
Retrieves the current warranty balance and deposit information for the card holding account. Requires an API key with access level 1 or higher.

Response

warranty_balance
number
Current warranty balance in USD.
blockchain
string
Blockchain network used for deposits.
deposit_address
string
Deposit wallet address.
deposit_tokens
object
Map of supported deposit token symbols to their contract addresses.
curl -X GET "https://api.cryptomate.me/cards/holding/balance" \
  -H "X-API-KEY: $CRYPTOMATE_API_KEY"
{
  "warranty_balance": 10000.00,
  "blockchain": "POLYGON",
  "deposit_address": "0x1234567890abcdef1234567890abcdef12345678",
  "deposit_tokens": {
    "USDC": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174",
    "USDT": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f"
  }
}