Skip to main content
GET
/
cards
/
account
/
fees-wallet
/
whitelisted-addresses
curl -X GET "https://api.cryptomate.me/cards/account/fees-wallet/whitelisted-addresses" \
  -H "x-api-key: $CRYPTOMATE_API_KEY"
[
  {
    "id": "b3f1c2a4-5d6e-7f80-9a1b-2c3d4e5f6a7b",
    "address": "0x1234567890abcdef1234567890abcdef12345678",
    "blockchain": "POLYGON",
    "alias": "Treasury cold wallet",
    "created_at": "2026-06-01T12:00:00"
  }
]
Returns the whitelisted addresses that are currently enabled as destinations for a fees withdrawal. An address is enabled once it has been in the cards whitelist for at least 24 hours — addresses added more recently are omitted from this list until the window elapses. Use this list to know which destinations Withdraw fees will accept. Addresses are managed from the Portal (Cards → Configuration). Requires an API key with access level 1 or higher.

Response

Returns an array of enabled whitelisted addresses.
[]
array
curl -X GET "https://api.cryptomate.me/cards/account/fees-wallet/whitelisted-addresses" \
  -H "x-api-key: $CRYPTOMATE_API_KEY"
[
  {
    "id": "b3f1c2a4-5d6e-7f80-9a1b-2c3d4e5f6a7b",
    "address": "0x1234567890abcdef1234567890abcdef12345678",
    "blockchain": "POLYGON",
    "alias": "Treasury cold wallet",
    "created_at": "2026-06-01T12:00:00"
  }
]