For the complete documentation index, see llms.txt. This page is also available as Markdown.

List Coins for On-Chain Withdrawal

All requests must include the following header:

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

[
    { "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.

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.

Last updated