Get spot balance history
This endpoint allows users to get spot asset balance history.
GET /api/v1/account/spot_balance/historyQuery Parameters
Field
Type
Need
Description
Example
/api/v1/account/spot_balance/history?account=42trU9A5...Response
{
"success": true,
"data": [
{
"amount": "1.00000000",
"balance": "5.50000000",
"symbol": "SOL",
"event_type": "deposit",
"created_at": 1716200000000
}
...
],
"next_cursor": "11114Lz77",
"has_more": true
}Field
Type
Description
Code Example (Python)
Last updated