> For the complete documentation index, see [llms.txt](https://ajaib.gitbook.io/ajaib-exchange-open-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ajaib.gitbook.io/ajaib-exchange-open-api/api-references/capital/get-withdraw-whitelisted-address-v2.md).

# Get Withdraw Whitelisted Address v2

`GET` `/v2/capital/withdraw/address/list`

**Functionality:** Retrieve whitelisted addresses for withdrawal.

**Authentication:** Required

#### URL Parameters

<table><thead><tr><th>Parameter</th><th width="128.87109375">Type</th><th>Mandatory</th><th>Description</th></tr></thead><tbody><tr><td>coin</td><td>string</td><td><ul class="contains-task-list"><li><input type="checkbox"></li></ul></td><td>The cryptocurrency symbol (e.g., "BTC", "ETH").<br>Leave blank to show all addresses for all coins.</td></tr><tr><td>recvWindow</td><td>long</td><td><ul class="contains-task-list"><li><input type="checkbox"></li></ul></td><td>Number of milliseconds after timestamp the request is valid for. Refer to <a data-mention href="/ajaib-exchange-open-api/getting-started/timing-security.md">Timing Security</a>.</td></tr><tr><td>timestamp</td><td>long</td><td><ul class="contains-task-list"><li><input type="checkbox" checked></li></ul></td><td>Timestamp when client sends the request.</td></tr></tbody></table>

#### Response Body

| Name          | Type   | Description                                                                                                                                                                          |
| ------------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| coin          | string | The cryptocurrency symbol (e.g., "BTC", "ETH").                                                                                                                                      |
| network       | string | The blockchain network name (e.g., "ETH", "BSC").                                                                                                                                    |
| address       | string | The withdrawal address for the specified coin.                                                                                                                                       |
| addressTag    | string | Extra information required for certain coins (e.g., memo, destination tag).                                                                                                          |
| status        | string | <p>The address approval status. Present in the response only while the status is <code>PENDING\_APPROVAL</code>. </p><p>Omitted once the address has been <code>APPROVED</code>.</p> |
| coolOffEndsAt | long   | Expiry timestamp of the address cool-down period, in milliseconds. Present only while the cool-down period is active.                                                                |

{% tabs %}
{% tab title="200 OK" %}

```json
[
  {
    "coin": "BTC",
    "network": "BTC",
    "address": "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa",
    "addressTag": "99999",
    "status": "PENDING_APPROVAL",
    "coolOffEndsAt": 1774538044000
  }
]
```

{% endtab %}

{% tab title="401 Unauthorized" %}

```json
{
  "code": -1002,
  "msg": "Unauthorized"
}
```

{% endtab %}
{% endtabs %}
