> 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-coins-for-on-chain-withdrawal.md).

# List Coins for On-Chain Withdrawal

{% 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 and networks available for on-chain withdrawal via Binance.

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

#### Request Parameters

No parameters required.

#### Response Example

```json
[
    { "name": "USDT (POLYGON)", "minimumWithdraw": 5.0, "maximumWithdraw": 10000.0 },
    { "name": "USDT (TRC20)",   "minimumWithdraw": 5.0, "maximumWithdraw": 10000.0 },
    { "name": "USDT (BEP20)",   "minimumWithdraw": 5.0, "maximumWithdraw": 10000.0 }
]
```

#### Response Fields

| Field               | Type   | Description                                   |
| ------------------- | ------ | --------------------------------------------- |
| **name**            | string | Currency name and the network in parentheses. |
| **minimumWithdraw** | number | Minimum withdrawal amount.                    |
| **maximumWithdraw** | number | Maximum withdrawal amount.                    |

{% hint style="info" %}
**Integration Tip** Pass the `name` value exactly as returned in this list (including the network suffix in parentheses, e.g., `USDT (BEP20)`) in the `Currency` field of the on-chain withdrawal request.
{% endhint %}
