API Reference

Get Account Balance

Description

This endpoint returns the asset balances for all LTP trade accounts (DMA accounts and the LTP Funding Account) that are available under the current LTP user.

For each accountId and accountType, it provides:

  • The total account equity in USDT (totalUsdt), and
  • A detailed per-currency breakdown (assetInfo[]) including total balance, available amount, withdrawable amount, frozen amount, and USDT valuation.

It can be called by both LTP primary users and LTP sub-users as long as the API key has read permission.

RapidX portfolio API keys are not supported and cannot access this endpoint. For retrieving balance and asset details of RapidX trading portfolios, please use RapidX asset API instead.

Request

FieldTypeNecessaryDescription
accountIdStringNOptional filter by LTP trade account ID. Supports multiple accountId values separated by commas, e.g. 10001,10002,10003. If omitted, balances for all available accounts are returned.
currencyStringNOptional filter by asset symbol (e.g. USDT, BTC). Does not support querying multiple currencies at the same time. If omitted, all currencies under the selected accounts are returned.

Response

Top-level account objects (data[])

FieldTypeDescription
accountIdIntegerInternal LTP trade account ID. Matches the accountId returned from the trade account list API, and is used to identify this account.
accountNoteStringOptional note or alias for this trade account (e.g. Your Note, Funding Account). May be an empty string.
venuesStringExchange / venue of the account, e.g. BINANCE, OKEX, GATE, KUCOIN, LTP.
totalUsdtStringTotal account equity in USDT terms for this accountType under the given accountId. Calculated by summing valueUsdt of all assets.
accountTypeStringLogical account type under this venue, e.g. Spot, Margin-PM, USDT/C-M, Coin-M, Funding, Trading, Funding Account, etc.
assetInfoArrayList of per-currency asset records for this accountId + accountType combination. May be an empty array if there is no balance.

Asset records (data[].assetInfo[])

FieldTypeDescription
currencyStringAsset symbol, e.g. USDT, BTC, ETH, BNB.
totalBalanceStringTotal balance of this currency in this account type (including available + frozen).
availableStringAvailable balance that can be used for trading or transfer.
withdrawAvailableStringBalance that is available for withdrawal. May differ from available due to risk or venue restrictions.
frozenStringFrozen balance (e.g. locked in open orders, pending withdrawals, or other holds).
valueUsdtStringEstimated mark-to-market value of this asset in USDT terms.
networkStringNetwork / chain of the asset where applicable (e.g. ERC20, BSC, BTC). May be null for venue-internal assets.
Language
Credentials
OAuth2