GET

/api/v1/exchanges/:id/currency_networks_info

Permission: EXCHANGES_READSecurity: SIGNED

Shows comprehensive information about supported currencies and each blockchain network available for deposit and withdrawal operations on the connected exchange account.

Supported Exchanges

This endpoint works exclusively for: Binance Spot, Binance US, OKX Spot.

Path Parameters

idUUID string required

Unique Quentrade UUID of this exchange account entity.

Query Parameters

purposestring optional

Filters currencies that support deposit or withdrawal operations ('deposit' or 'withdraw'). If set to deposit, only currencies with deposit_enable: true are returned. If set to withdraw, only currencies with withdraw_enable: true are returned.

Example Request

GETGET /api/v1/exchanges/7fa84b80-77a8-4e89-a292-123456789abc/currency_networks_info?purpose=withdraw

Response Parameters

currencystring

The ticker code or symbol of the currency (e.g. BTC, ETH, USDT).

namestring

The full formal name of the cryptocurrency.

deposit_enableboolean

Indicates whether deposits are currently enabled for this asset.

withdraw_enableboolean

Indicates whether withdrawals are currently enabled for this asset.

network_listarray[object]

Array detailing each supported blockchain network for transfers.

networkstring

Network protocol identifier (e.g. BTC, BNB, ERC20, TRC20).

network_namestring

Full descriptive name of the blockchain network.

defaultboolean

Indicates whether this is the default transfer network.

deposit_enableboolean

Whether deposit is currently operational on this network.

withdraw_enableboolean

Whether withdrawal is currently operational on this network.

deposit_tipstring

Informational notice or warning related to deposits on this network.

withdraw_tipstring

Informational notice or warning related to withdrawals on this network.

special_tipstring

Special instructions (e.g. requiring a MEMO/Tag).

withdraw_feestring

Estimated withdrawal transaction fee charged by the exchange.

withdraw_minstring

Minimum allowable withdrawal amount.

withdrawMaxstring

Maximum allowable single withdrawal amount.

address_regexpstring

Regular expression pattern for validating destination wallet addresses.

memo_regexpstring

Regular expression pattern for validating MEMO or tag inputs.

require_address_tagboolean

Flag indicating whether a MEMO / Tag / Payment ID is strictly required.

Example Responses

network_info_200.json
200 OK
{
  "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.",
      "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
    }
  ]
}