GET

/api/v1/exchanges/:id/table_chart_data

Permission: EXCHANGES_READSecurity: SIGNED

Returns comprehensive information about currency balances of a specific account using its ID, formatted for tabular rendering and portfolio analytics.

Pro Tip (Portfolio Summary)

By replacing :id with summary (/api/v1/exchanges/summary/table_chart_data), you can retrieve aggregated table balance data across all exchange accounts enabled in summary.

Path Parameters

idUUID string / summary required

Unique Quentrade UUID of this exchange account entity (or 'summary' for aggregated portfolio table data).

Example Request

GETGET /api/v1/exchanges/7fa84b80-77a8-4e89-a292-123456789abc/table_chart_data

Response Parameters

currency_codestring

Code symbol for the cryptocurrency (e.g. ETH, DOGE, USDT).

currency_namestring

Full name of the cryptocurrency (e.g. Ethereum, Dogecoin).

currency_iconstring

URL link to the icon image of the cryptocurrency.

currency_slugstring

Slug identifier used for the cryptocurrency.

percentagenumber

Percentage proportion of total portfolio value held in this asset.

positionnumber

Total position size held.

position_availablenumber

Position size currently free and available for trading.

position_typeinteger

Position type code identifier (e.g. 0 for spot).

borrowednumber

Borrowed amount on margin trading.

on_ordersnumber

Asset quantity locked in active open orders.

on_orders_with_leveragenumber

Asset quantity in orders factored with leverage.

on_orders_longnumber

Asset quantity placed in open long orders.

on_orders_shortnumber

Asset quantity placed in open short orders.

equitynumber

Net equity value of this asset.

current_pricenumber

Current market price in primary base unit.

current_price_usdnumber

Current market price evaluated in USD.

day_change_percentnumber

24-hour price percentage change.

day_change_percent_btcnumber

24-hour price change against BTC in percent.

day_change_percent_usdnumber

24-hour price change against USD in percent.

btc_valuenumber

Total position holding equivalent value in BTC.

usd_valuenumber

Total position holding equivalent value in USD.

available_longnumber

Available balance for long positions.

available_shortnumber

Available balance for short positions.

available_with_leverage_longnumber

Available margin with leverage for long positions.

available_with_leverage_shortnumber

Available margin with leverage for short positions.

account_idUUID string

Unique ID of the exchange account entity.

is_walletboolean

Indicates whether this balance is held in a spot wallet.

Example Responses

table_chart_balances_200.json
200 OK
[
  {
    "currency_code": "ETH",
    "currency_name": "Ethereum",
    "currency_icon": "https://assets.quentrade.com/crypto/1027.png",
    "currency_slug": "ethereum",
    "percentage": 0.7908972825805544,
    "position": 0.0000952,
    "position_available": 0.0000952,
    "position_type": 0,
    "borrowed": 0,
    "on_orders": 0,
    "on_orders_with_leverage": 0,
    "on_orders_long": 0,
    "on_orders_short": 0,
    "equity": 0.0000952,
    "current_price": 0.04085,
    "current_price_usd": 2611.4959735,
    "day_change_percent": 1.036,
    "day_change_percent_btc": 1.036,
    "day_change_percent_usd": -1.418,
    "btc_value": 0.00000388892,
    "usd_value": 0.2486144166772,
    "available_long": 0,
    "available_short": 0,
    "available_with_leverage_long": 0,
    "available_with_leverage_short": 0,
    "account_id": "7fa84b80-77a8-4e89-a292-123456789abc",
    "is_wallet": false
  },
  {
    "currency_code": "DOGE",
    "currency_name": "Dogecoin",
    "currency_icon": "https://assets.quentrade.com/crypto/74.png",
    "currency_slug": "dogecoin",
    "percentage": 10.24208849013634,
    "position": 27.076,
    "position_available": 27.076,
    "position_type": 0,
    "borrowed": 0,
    "on_orders": 0,
    "on_orders_with_leverage": 0,
    "on_orders_long": 0,
    "on_orders_short": 0,
    "equity": 27.076,
    "current_price": 0.00000186,
    "current_price_usd": 0.1189077726,
    "day_change_percent": -2.094,
    "day_change_percent_btc": -2.094,
    "day_change_percent_usd": -4.886,
    "btc_value": 0.00005036136,
    "usd_value": 3.2195468509176,
    "available_long": 0,
    "available_short": 0,
    "available_with_leverage_long": 0,
    "available_with_leverage_short": 0,
    "account_id": "7fa84b80-77a8-4e89-a292-123456789abc",
    "is_wallet": false
  }
]