Deposit or withdraw networks info
GET
/ver1/accounts/:account_id/networks_infoShows information about the currency and each supported network for deposits and withdrawals available on the exchange account.
This endpoint works for the following exchanges: Binance Spot, Binance US, OKX Spot.
Response Parameters
Details about available networks for deposits and withdrawals.
Hide child parametersShow child parameters
Example Responses
- 200 OK
- 400 Bad Request
- 403 Forbidden
{
"currency": "BTC",
"name": "Bitcoin",
"deposit_enable": true,
"withdraw_enable": true,
"network_list": [
{
"network": "BNB",
"default": false,
"deposit_enable": false,
"withdraw_enable": false,
"deposit_tip": "Wallet Maintenance, Deposit Suspended",
"withdraw_tip": "Wallet Maintenance, Withdrawal Suspended",
"special_tip": "Both a MEMO and an Address are required to successfully deposit your BEP2-BTCB tokens to Binance.",
"network_name": "BNB Beacon Chain (BEP2)",
"network_url": null,
"address_regexp": "^(bnb1)[0-9a-z]{38}$",
"withdraw_fee": "0.0000093",
"withdraw_min": "0.000019",
"withdrawMax": "10000000000",
"withdrawMultiple": "0.00000001",
"memo_regexp": "^[0-9A-Za-z\\-_]{1,120}$",
"label": "MEMO/Tag",
"require_address_tag": false
},
{
"network": "BTC",
"default": true,
"deposit_enable": true,
"withdraw_enable": true,
"deposit_tip": "",
"withdraw_tip": "",
"special_tip": "",
"network_name": "Bitcoin",
"network_url": null,
"address_regexp": "^[13][a-km-zA-HJ-NP-Z1-9]{25,34}$|^[(bc1q)|(bc1p)][0-9A-Za-z]{37,62}$",
"withdraw_fee": "0.0004",
"withdraw_min": "0.0008",
"withdrawMax": "10000000000",
"withdrawMultiple": "0.00000001",
"memo_regexp": "",
"label": "",
"require_address_tag": false
}
]
}
{
"error": "record_invalid",
"error_description": "Invalid parameters",
"error_attributes": {
"currency": [
"is missing"
],
"network": [
"is missing"
]
}
}
{
"error": "Forbidden. Unavailable for this account."
}