> 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/deposit-address.md).

# Deposit Address

`GET` `/v1/capital/deposit/address/list`

**Functionality:** Retrieve a deposit address for a specific coin.

**Authentication:** Required

#### URL Parameters

| Parameter  | Type   | Mandatory                                                                    | Description                                                                                                                                                         |
| ---------- | ------ | ---------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| coin       | string | <ul class="contains-task-list"><li><input type="checkbox" checked></li></ul> | The cryptocurrency symbol (e.g., "BTC", "ETH").                                                                                                                     |
| network    | string | <ul class="contains-task-list"><li><input type="checkbox"></li></ul>         | The blockchain network name (e.g., "ETH", "BSC").                                                                                                                   |
| recvWindow | long   | <ul class="contains-task-list"><li><input type="checkbox"></li></ul>         | Number of milliseconds after timestamp the request is valid for. Refer to [this](https://ajaib.gitbook.io/ajaib-exchange-open-api/getting-started/timing-security). |
| timestamp  | long   | <ul class="contains-task-list"><li><input type="checkbox" checked></li></ul> | Timestamp when client sends the request.                                                                                                                            |

#### 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 deposit address for the specified coin.                                 |
| addressTag | string | Extra information required for certain coins (e.g., memo, destination tag). |

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

```json
[
  {
    "coin": "ETH",
    "network": "ETH",
    "address": "0xD316E95Fd9E8E237Cb11f8200Babbc5D8D177BA4",
    "addressTag": "999999"
  }
]
```

{% endtab %}

{% tab title="401 Unauthorized" %}

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

{% endtab %}
{% endtabs %}
