OpenAPI 3.1.02026-08-193894215.9 MB
23dfbe1a0d1f
Accounts
List Account Reserves
Lists what the account's held balance is made of, one entry per currency: the total held, why each part is held, and the days it unlocks.
get/accounts/{account_id}/reserves
Path parameters
account_idstring required
Account ID, prefixed biz_.
Headers
Api-Version-Datestring
Example:2026-08-13
Pins the request to a dated API version.
Response
empty when nothing is held
Example response
{
"data": [
{
"amount": "125.5",
"by_type": [
{
"amount": "100.0",
"hold_period_days": 90,
"percentage": 25,
"type": "regular"
}
],
"currency": "usd",
"unlocks_by_date": [
{
"amount": "100.0",
"date": "2026-01-01"
}
]
}
]
}