> 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/all-coins-information.md).

# All Coins Information

`GET` `/v1/capital/config/getall`

**Functionality:** Retrieve information of all available coins for deposit and withdrawal.

**Authentication:** Required

#### URL Parameters

| Name       | Type | Mandatory                                                                    | Description                                                                                                                                                         |
| ---------- | ---- | ---------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| 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

**Coin**

| Name        | Type   | Description                                           |
| ----------- | ------ | ----------------------------------------------------- |
| coin        | string | The cryptocurrency symbol (e.g., "BTC", "ETH").       |
| name        | string | Full name of the cryptocurrency (e.g., "Bitcoin").    |
| networkList | array  | List of available blockchain networks for this asset. |

**Network List**

| Name           | Type    | Description                                                             |
| -------------- | ------- | ----------------------------------------------------------------------- |
| network        | string  | The blockchain network name (e.g., "BNB", "ETH").                       |
| name           | string  | Display name of the network (e.g., "BEP2").                             |
| isDefault      | boolean | Indicates if this is the default network.                               |
| depositEnable  | boolean | Indicates if deposits are enabled for this network.                     |
| withdrawEnable | boolean | Indicates if withdrawals are enabled for this network.                  |
| withdrawFee    | string  | The withdrawal fee for this network.                                    |
| withdrawMin    | string  | Minimum withdrawal amount for this network.                             |
| sameAddress    | boolean | Indicates if a memo or tag is required for withdrawals on this network. |

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

```json
[
  {
    "coin": "BTC",
    "name": "Bitcoin",
    "networkList": [
      {
        "network": "BNB",
        "name": "BTC (BEP)",
        "isDefault": false,
        "depositEnable": true,
        "withdrawEnable": false,
        "withdrawFee": "0.0000022",
        "withdrawMin": "0.0001",
        "sameAddress": true
      }
    ]
  }
]
```

{% endtab %}

{% tab title="401 Unauthorized" %}

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

{% endtab %}
{% endtabs %}
