Skip to main content
GET
/
cards
/
virtual-cards
/
{cardId}
/
top-up
curl -X GET "https://api.cryptomate.me/cards/virtual-cards/card_6f1e2a30-4a3c-4b2e-9a1d-5e8c9b7a1f23/top-up" \
  -H "X-API-KEY: $CRYPTOMATE_API_KEY"
[
  {
    "address": "0x1234567890abcdef1234567890abcdef12345678",
    "blockchain": "POLYGON",
    "tokens": ["USDC", "USDT"],
    "ramps": [
      {
        "address": "0xabcdefabcdefabcdefabcdefabcdefabcdefabcd",
        "blockchain": "POLYGON",
        "memo": null,
        "tokens": ["USDC"]
      }
    ]
  }
]
Retrieves the wallets available for topping up the virtual card, including supported tokens and ramp providers. Requires an API key with access level 1 or higher.

Path parameters

cardId
string
required
Card identifier.

Response

Returns an array of top-up wallet objects.
address
string
Wallet address for deposits.
blockchain
string
Blockchain network for the wallet.
tokens
array
List of supported tokens for deposits.
ramps
array
List of ramp provider objects. Each contains address, blockchain, memo, and tokens.
curl -X GET "https://api.cryptomate.me/cards/virtual-cards/card_6f1e2a30-4a3c-4b2e-9a1d-5e8c9b7a1f23/top-up" \
  -H "X-API-KEY: $CRYPTOMATE_API_KEY"
[
  {
    "address": "0x1234567890abcdef1234567890abcdef12345678",
    "blockchain": "POLYGON",
    "tokens": ["USDC", "USDT"],
    "ramps": [
      {
        "address": "0xabcdefabcdefabcdefabcdefabcdefabcdefabcd",
        "blockchain": "POLYGON",
        "memo": null,
        "tokens": ["USDC"]
      }
    ]
  }
]