Skip to main content

Balances

GET /v1/api/balances

This endpoint returns a list of all asset balances for the authenticated account.

Headers

Header FieldTypeComments
credentials_secretJWTJWT Auth Token cf Authentication

Balances Response

NameTypeComments
balance_responseBalance[]See structure below

Balance Object

NameTypeComments
deliverable_idintegerId of deliverable
symbolstringAsset name e.g BTC, USD. For USD-REFERENCE see note below
timestampintegerμs utc timestamp when the balance was last updated
cash_balancefloatTotal balance for that asset
reserved_balancefloatBalance allocated to open orders and margin
available_balancefloatBalance Available for trading
withdrawable_balancefloatBalance Available for withdrawal

Responses

{
"balance_response": [
{
"deliverable_id": "2",
"symbol": "USD-REFERENCE",
"cash_balance": "102728361.56",
"available_balance": "102319776.09",
"reserved_balance": "-408585.47",
"withdrawable_balance": "0",
"timestamp": "1670240745339389000"
},
{
"deliverable_id": "2",
"symbol": "USD",
"cash_balance": "101810298.8985343677",
"available_balance": "101724852.530344405",
"reserved_balance": "-85446.3681899627",
"withdrawable_balance": "101724852.530344405",
"timestamp": "1670240745339389000"
},
{
"deliverable_id": "3",
"symbol": "BTC",
"cash_balance": "13.1947",
"available_balance": "13.1947",
"reserved_balance": "0",
"withdrawable_balance": "13.1947",
"timestamp": "1670240745174805000"
},
{
"deliverable_id": "4",
"symbol": "ETH",
"cash_balance": "512",
"available_balance": "512",
"reserved_balance": "0",
"withdrawable_balance": "512",
"timestamp": "1670240745174805000"
}
]
}