OpenAPI 3.1.02026-08-203914245.9 MB

4a1a4a5d2c72

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-14

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"
        }
      ]
    }
  ]
}