Skip to main content
GET
/
v1
/
ledger
/
closing-balances
Get closing balances across all currencies for a past date
curl --request GET \
  --url https://api.example.com/v1/ledger/closing-balances \
  --header 'Authorization: Bearer <token>'
[
  {
    "accountId": "123e4567-e89b-12d3-a456-426614174000",
    "closingBalance": "1500.50",
    "currency": "EUR",
    "date": "2026-05-13"
  }
]

Authorizations

Authorization
string
header
required

Enter Auth0 JWT token

Query Parameters

date
string
required

UTC calendar date in YYYY-MM-DD format. Must be in the past.

Example:

"2026-05-13"

Response

Closing balances retrieved successfully.

accountId
string
required

Account UUID

Example:

"123e4567-e89b-12d3-a456-426614174000"

closingBalance
string
required

Closing balance for the requested date (decimal string)

Example:

"1500.50"

currency
string
required

ISO 4217 currency code

Example:

"EUR"

date
string
required

Echo of the requested date (YYYY-MM-DD, UTC)

Example:

"2026-05-13"