GET

/api/v1/exchanges/:id/deposit_data

Permission: EXCHANGES_READSecurity: SIGNED

Returns the cryptocurrency deposit address, tag/memo, and balance breakdown for a specific currency and blockchain network 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

currencystring required

Currency code/symbol to retrieve deposit data for (e.g. BTC, ETH, USDT).

networkstring required

Name of the blockchain network for this currency (e.g. BTC, ERC20, TRC20, BNB).

Example Request

GETGET /api/v1/exchanges/7fa84b80-77a8-4e89-a292-123456789abc/deposit_data?currency=BTC&network=BTC

Response Parameters

addressstring

The cryptocurrency wallet address for deposits.

address_tagstring

Tag, memo, or payment ID required for deposits (if applicable, otherwise empty string).

available_balancestring

The amount of this currency currently available for trading or transfer.

in_ordersstring

The amount of this currency currently locked in active open orders.

total_balancestring

The total balance held in this currency on this exchange account.

Example Responses

user_deposit_200.json
200 OK
{
  "address": "1J6jZDFSeGfwfwJpS4SLqhVo7eo2DgkT9Q",
  "address_tag": "",
  "available_balance": "0.00031872",
  "in_orders": "0.0",
  "total_balance": "0.00031872"
}