---
title: "List account statements"
method: GET
path: "/accounts/{account_id}/account_statements"
tags: ["Account statements"]
---

# List account statements

`GET /accounts/{account_id}/account_statements`

Lists the account statements of one of your accounts for the `live` or `test` mode of the API key you use. Filter by date range with the `since` and `until` query parameters. The response is paginated. Use `starting_after`, `ending_before`, and `limit` to page through the results. When more results are available, the `Link` response header carries the URL of the next page.

## Path parameters

- `account_id` string, required

## Query parameters

- `since` string
- `until` string
- `starting_after` string
- `ending_before` string
- `limit` integer

## Response `200`

List of account statements for the account.

- AccountStatement[]
  - `id` string, required — Unique identifier of the account statement.
  - `object` 'account_statement', required — Type of the object. Always `account_statement`.
  - `created_at` string, date-time, required — Point in time when Fintoc generated the statement, as an ISO 8601 datetime in UTC.
  - `download_url` string, nullable, required — URL to download the statement PDF. `null` when the file is not yet available.
  - `end_date` string, date, required — Last day covered by the statement, as an ISO 8601 date.
  - `final_balance_cents` integer, required — Account balance at the end of the period, in the smallest currency unit.
  - `initial_balance_cents` integer, required — Account balance at the start of the period, in the smallest currency unit.
  - `start_date` string, date, required — First day covered by the statement, as an ISO 8601 date.
  - `total_credited_cents` integer, required — Total credited during the period, in the smallest currency unit.
  - `total_debited_cents` integer, required — Total debited during the period, in the smallest currency unit.

## Other responses

- `401` — Invalid or missing API key.
- `404` — The account does not exist in your organization.

---

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