> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cryptomate.me/llms.txt
> Use this file to discover all available pages before exploring further.

# Get card top-up wallets

> Retrieve wallets available for topping up a virtual card.

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

<ParamField path="cardId" type="string" required>
  Card identifier.
</ParamField>

## Response

Returns an array of top-up wallet objects.

<ResponseField name="address" type="string">
  Wallet address for deposits.
</ResponseField>

<ResponseField name="blockchain" type="string">
  Blockchain network for the wallet.
</ResponseField>

<ResponseField name="tokens" type="array">
  List of supported tokens for deposits.
</ResponseField>

<ResponseField name="ramps" type="array">
  List of ramp provider objects. Each contains `address`, `blockchain`, `memo`, and `tokens`.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  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"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  [
    {
      "address": "0x1234567890abcdef1234567890abcdef12345678",
      "blockchain": "POLYGON",
      "tokens": ["USDC", "USDT"],
      "ramps": [
        {
          "address": "0xabcdefabcdefabcdefabcdefabcdefabcdefabcd",
          "blockchain": "POLYGON",
          "memo": null,
          "tokens": ["USDC"]
        }
      ]
    }
  ]
  ```
</ResponseExample>
