Retrieve asset balances across all trade accounts accessible to the current LTP user.
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Description
Returns the asset balances for all LTP trade accounts (DMA accounts and the LTP Funding Account) accessible to the current LTP user.
For each accountId and accountType, the response 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. Note that the same accountId may appear multiple times — once per accountType — reflecting the sub-wallet structure of the underlying exchange (e.g. Spot, Margin-PM, Funding).
Permission
Requires READ permission. Supported by LTP primary user API keys and LTP sub-user API keys.
RapidX portfolio API keys are not supported and cannot access this endpoint. For balance and asset details of RapidX trading portfolios, use the RapidX asset API instead.
Request Parameters
| Field | Type | Required | Description |
|---|---|---|---|
accountId | String | No | Filter by account ID. Supports comma-separated values (e.g. 10001,10002). Omit to return all accounts |
currency | String | No | Filter by asset symbol (e.g. USDT, BTC). Only one currency can be specified at a time |
Response Fields
Account level (data[])
data[])| Field | Type | Description |
|---|---|---|
accountId | Long | Internal LTP trade account ID. Matches the accountId returned from the trade account list API, and is used to identify this account. |
accountNote | String | Optional note or alias for this trade account (e.g. Your Note, Funding Account). May be an empty string. |
venues | String | Exchange or venue (e.g. BINANCE, BYBIT, LTP) |
totalUsdt | String | Total account equity in USDT terms for this accountType under the given accountId. Calculated by summing valueUsdt of all assets.T |
accountType | String | Sub-wallet type within the exchange (e.g. Spot, Margin-PM, Funding, Trading). Varies by exchange |
assetInfo | Array | List of per-currency asset records for this accountId + accountType combination. May be an empty array if there is no balance. |
Asset level (assetInfo[])
assetInfo[])| Field | Type | Description |
|---|---|---|
currency | String | Asset symbol (e.g. USDT, BTC) |
totalBalance | String | Total balance of this currency in this account type (including available + frozen). |
available | String | Available balance that can be used for trading or transfer. |
withdrawAvailable | String | Balance that is available for withdrawal. May differ from available due to risk or venue restrictions. |
frozen | String | Frozen balance (e.g. locked in open orders, pending withdrawals, or other holds). |
valueUsdt | String | Estimated mark-to-market value of this asset in USDT terms. |
network | String / null | Network / chain of the asset where applicable (e.g. ERC20, BSC, BTC). May be null for venue-internal assets. |
