US Asset Overview
Longbridge US Accounts
This method is only available for US data-center accounts.
Get an overview of US account assets — buying power, cash, stocks, options, and crypto.
SDK Links
Parameters
SDK method parameters.
No parameters required.
Request Example
Response
Response Example
json
{
"account_type": "US",
"asset_timestamp": 1751866334,
"cash_buy_power": "12500.00",
"overnight_buy_power": "10000.00",
"currency": "USD",
"cash_list": [
{
"currency": "USD",
"total_cash": "12500.00",
"settled_cash": "12000.00",
"total_amount": "12500.00",
"outstanding": "500.00",
"frozen_buy_cash": "0.00"
}
],
"stock_list": [
{
"symbol": "AAPL.US",
"quantity": "10",
"currency": "USD",
"average_cost": "180.00",
"last_done": "185.00",
"prev_close": "183.00",
"asset_type": "stock",
"trade_status": "Normal"
}
],
"crypto_list": [
{
"symbol": "BTCUSD.BKKT",
"average_cost": "50000.00",
"currency": "USD",
"asset_type": "crypto",
"industry_name": "Cryptocurrency"
}
]
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | Success | USAssetOverview |
| 400 | Bad request | None |
Schemas
USAssetOverview
| Name | Type | Required | Description |
|---|---|---|---|
| account_type | string | true | Account type identifier |
| asset_timestamp | string | true | Snapshot time (Unix seconds) |
| cash_buy_power | string | true | Available buying power (cash) |
| overnight_buy_power | string | true | Overnight buying power |
| currency | string | true | Base currency |
| cash_list | USCashEntry[] | false | Cash balances by currency |
| stock_list | USStockEntry[] | false | Stock positions |
| option_list | object[] | false | Option positions |
| crypto_list | USCryptoEntry[] | false | Crypto positions |
USCashEntry
| Name | Type | Description |
|---|---|---|
| currency | string | Currency code |
| total_cash | string | Total cash |
| settled_cash | string | Settled cash |
| total_amount | string | Total amount including unsettled |
| outstanding | string | Outstanding (unsettled) amount |
| frozen_buy_cash | string | Frozen amount for pending buys |
USStockEntry
| Name | Type | Description |
|---|---|---|
| symbol | string | Ticker symbol (e.g. AAPL) |
| full_symbol | string | Qualified symbol (e.g. AAPL.US) |
| asset_type | string | Asset type |
| quantity | string | Quantity held |
| currency | string | Currency code |
| average_cost | string | Average cost price |
| market | string | Market identifier |
| trade_status | string | Trading status |
| prev_close | string | Previous close price |
| last_done | string | Last traded price |
| market_price | string | Current market price |
| today_pl | string | Today's P&L |
| name | string | Security name |
| position_side | string | Position side (long/short) |
| industry_name | string | Industry/sector name |
USCryptoEntry
| Name | Type | Description |
|---|---|---|
| symbol | string | Crypto trading-pair symbol (e.g. BTCUSD.BKKT) |
| average_cost | string | Average cost price |
| currency | string | Quote currency |
| asset_type | string | Asset type |
| industry_name | string | Industry/category name |