curl --request GET \
--url https://api.example.com/v1/cases/{case_id}/bank-accounts/{account_id}/balance-history \
--header 'Authorization: Bearer <token>'{
"data": [
{
"date": "2025-09-30",
"balance": 15230.5,
"available_balance": 14980.25
}
]
}Retrieve historical balance snapshots for a bank account.
curl --request GET \
--url https://api.example.com/v1/cases/{case_id}/bank-accounts/{account_id}/balance-history \
--header 'Authorization: Bearer <token>'{
"data": [
{
"date": "2025-09-30",
"balance": 15230.5,
"available_balance": 14980.25
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Start date (inclusive).
End date (inclusive).
Granularity of snapshots.
daily, weekly, monthly Balance history.
Show child attributes