> For the complete documentation index, see [llms.txt](https://docs.0xprocessing.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.0xprocessing.com/0xprocessing-api/binance-pay/list-supported-coins-binance-pay-id.md).

# List Supported Coins (Binance Pay ID)

{% hint style="danger" %}
**Authentication Rule** The request must contain an **`APIKEY`** header with your API key. The key can be generated in the merchant dashboard under **Settings \ API .**
{% endhint %}

All requests must include the following header:

```http
APIKEY: your_api_key_here
Content-Type: application/x-www-form-urlencoded
```

Returns the list of currencies supported for both deposit and withdrawal via Binance Pay ID, along with their minimum and maximum limits.

* **Method:** `GET`
* **Endpoint:** `https://app.0xprocessing.com/api/BinanceIdCoins`

#### Request Parameters

No parameters required.

#### Response Example

```json
[
    {
        "name": "USDT",
        "minimumWithdraw": 3.0,
        "maximumWithdraw": 70000.0,
        "minimumDeposit": 3.0,
        "maximumDeposit": 1000.0
    }
]
```

#### Response Fields

| Field               | Type   | Description                |
| ------------------- | ------ | -------------------------- |
| **name**            | string | Currency name.             |
| **minimumWithdraw** | number | Minimum withdrawal amount. |
| **maximumWithdraw** | number | Maximum withdrawal amount. |
| **minimumDeposit**  | number | Minimum deposit amount.    |
| **maximumDeposit**  | number | Maximum deposit amount.    |
