Skip to main content

Query Wallet Balance

Returns the user's futures wallet balance.

Request Parameters​

NameTypeRequiredDescription
walletStringNoWallet identifier β€” CROSS@ or ISOLATED@{symbol}-USDT (e.g. ISOLATED@BTC-PERP-USDT). Optional β€” if omitted, returns balances across all wallets.

Response Content​

NameTypeDescription
walletStringWallet identifier
activeWalletNameStringActive wallet name
queryTypeIntegerQuery type
trackingIDLongInternal tracking ID
walletTotalValueDoubleWallet total value
totalValueDoubleTotal value
marginBalanceDoubleMargin balance
availableBalanceDoubleAvailable balance
unrealisedProfitLossDoubleUnrealized P&L
maintenanceMarginDoubleMaintenance margin
leverageDoubleCurrent leverage (CROSS: current, not setting)
openMarginDoubleOpen margin
assetsObject[]Available assets
assetsInUseObject[]Assets in use
example
GEThttps://api.btse.com/futures/api/v2.3/user/wallet

Response

[
{
"wallet": "CROSS@",
"activeWalletName": "String",
"queryType": 0,
"trackingID": 0,
"walletTotalValue": 0,
"totalValue": 100,
"marginBalance": 100,
"availableBalance": 100,
"unrealisedProfitLoss": 0,
"maintenanceMargin": 0,
"leverage": 0,
"openMargin": 0,
"assets": [
{
"balance": 0.20183537,
"assetPrice": 7158.845,
"currency": "BTC"
}
],
"assetsInUse": [
{
"balance": 0.01,
"assetPrice": 7158.845,
"currency": "BTC"
}
]
}
]