Get account balance history
This endpoint allows users to get account balance history. Returns all balance effects that affects the queried account.
GET /api/v1/account/balance/historyQuery Parameters
Field
Type
Need
Description
Example
/api/v1/account/balance/history?account=42trU9A5...Response
{
"success": true,
"data": [
{
"amount": "100.000000",
"balance": "1200.000000",
"pending_balance": "0.000000",
"event_type": "deposit",
"created_at": 1716200000000
}
...
],
"next_cursor": "11114Lz77",
"has_more": true
}Field
Type
Description
Event Type (String)
Description
Code Example (Python)
Last updated