---
title: "List balances"
method: GET
path: "/financial-data/v2/accounts/{id}/balances"
tags: ["Accounts"]
---

# List balances

`GET /financial-data/v2/accounts/{id}/balances`

Returns a list of account balances. For further details on Pagination, see general section above.

## Path parameters

- `id` string, required

## Query parameters

- `type` 'BOOKED' | 'BOOKED_ADJUSTED' | 'AVAILABLE'
- `mostRecent` boolean
- `limit` integer
- `token` string

## Response `200`

List of balances.

- object
  - `items` Balance[], required — A list of resources.
    - `id` string, required — Unique resource identifier.
    - `accountId` string, required — Unique resource identifier.
    - `organizationId` string, required — Unique resource identifier for an Organization.
    - `type` 'BOOKED' | 'BOOKED_ADJUSTED' | 'AVAILABLE', required
    - `reportedType` 'OPEN' | 'CLOSE' | 'INTERIM', required
    - `amount` Amount, required
      - `currency` string, required — Three-letter ISO 4217 currency code.
      - `stringValue` string, required — A string representation of the amount value. This will be a decimal number if the currency has decimals. The number is not formatted for display purposes (e.g. with locale specific thousand separator) and always contains the dot `.` character as decimal separator.
      - `value` integer, required — The amount value as an integer (int64) represented in currency minor units (e.g. 15.02 EUR is represented as the value 1502).
    - `localDate` string, date, required — `full-date` notation as defined by [RFC 3339, section 5.6](https://datatracker.ietf.org/doc/html/rfc3339#section-5.6), for example, `2017-07-21`.
    - `timestamp` string, date-time, required — Timestamp of when the balance entry was recorded on the account. This timestamp is reported in UTC and thus the date component of this timestamp may be different than `localDate`.
    - `created` string, date-time, required — Time at which the resource was created.
    - `version` integer, required — Resource version. Starts at value `1` when the resource is created and increases by one for each successive update.
  - `nextToken` string, required — Pagination token for next page. The value will be a non-empty string if there are more resources to be fetched. The value will be an empty string if there are no more resources to be fetched.
  - `token` string, required — The pagination token that was used for this request. The value will be an empty string if no `token` query parameter was provided with the request.
  - `limit` integer, required — The page limit that was used for this request.

## Other responses

- `400` — Bad request.

---

[API](https://skmtc.net/atlar/apis/atlar-api-v2.md) · [All operations](https://skmtc.net/atlar/apis/atlar-api-v2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/atlar/atlar-api-v2/revisions/9c5e194ccf5d/schema)
