List Supported Coins (Binance Pay ID)
Last updated
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 .
All requests must include the following header:
APIKEY: your_api_key_here
Content-Type: application/x-www-form-urlencodedReturns 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
No parameters required.
[
{
"name": "USDT",
"minimumWithdraw": 3.0,
"maximumWithdraw": 70000.0,
"minimumDeposit": 3.0,
"maximumDeposit": 1000.0
}
]name
string
Currency name.
minimumWithdraw
number
Minimum withdrawal amount.
maximumWithdraw
number
Maximum withdrawal amount.
minimumDeposit
number
Minimum deposit amount.
maximumDeposit
number
Maximum deposit amount.
Last updated