> ## 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 fees wallet whitelisted addresses

> List the whitelisted addresses enabled for fees withdrawal.

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](/api-reference/cards/account/withdraw-fees-wallet) 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.

<ResponseField name="[]" type="array">
  <Expandable title="Whitelisted address">
    <ResponseField name="id" type="string">
      Whitelisted address identifier.
    </ResponseField>

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

    <ResponseField name="blockchain" type="string">
      Blockchain of the address (e.g. `POLYGON`).
    </ResponseField>

    <ResponseField name="alias" type="string">
      Optional alias configured for the address.
    </ResponseField>

    <ResponseField name="created_at" type="string">
      Timestamp when the address was added to the whitelist.
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://api.cryptomate.me/cards/account/fees-wallet/whitelisted-addresses" \
    -H "x-api-key: $CRYPTOMATE_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  [
    {
      "id": "b3f1c2a4-5d6e-7f80-9a1b-2c3d4e5f6a7b",
      "address": "0x1234567890abcdef1234567890abcdef12345678",
      "blockchain": "POLYGON",
      "alias": "Treasury cold wallet",
      "created_at": "2026-06-01T12:00:00"
    }
  ]
  ```
</ResponseExample>
