Get an account's balance (current or point-in-time)
Pass ?at=<ISO 8601 timestamp> for a historical balance computed
from value_date on each posting. Without at, returns the
current balance from the actor’s in-memory state.
Authorizations
OAuth 2.0 client_credentials grant. Send client_id:client_secret
as HTTP Basic, or as form fields. Tokens are HS256 JWTs valid for
one hour (configurable). Decode them at jwt.io.
Path Parameters
Query Parameters
ISO 8601 instant. Balance as of that moment.
Response
Current posted + pending balance
Discriminator naming the shape of this resource (e.g. account, transaction).
balance "account"
"accounts_receivable:acme"
"USDC"
Signed minor units from confirmed postings, as a decimal string. Parse with a big-integer or decimal type, never a JS number.
^-?\d+$"9700000"
Signed minor units from pending: true postings, as a decimal string. Parse with a big-integer or decimal type, never a JS number.
^-?\d+$"0"
posted + pending, as a decimal string. Parse with a big-integer or decimal type, never a JS number.
^-?\d+$"9700000"