Get the rolled-up balance for an account category
Returns the aggregate balance across all accounts under the
same category as the addressed account (e.g. the sum of every
accounts_receivable:* account). Useful for treasury-level
dashboards that want a single number per category.
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
Response
Rolled-up category 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"