---
title: "List account statements"
method: GET
path: "/accounts/{id}/statements"
tags: ["Statements"]
---

# List account statements

`GET /accounts/{id}/statements`

Get a paginated list of statements for an account. When specifying a date range, both startTime and endTime must be provided together. Defaults to the last 7 days if no date range is specified. Data is available for up to 24 months from the current date.

## Path parameters

- `id` string, uuid, required

## Query parameters

- `limit` integer
- `pageKey` string, uuid
- `startTime` string, date
- `endTime` string, date

## Response `200`

A paginated list of statements

- ListStatementsResponse — Paginated list of statements.
  - `page` Page — Pagination metadata for list responses.
    - `nextPageKey` string — Cursor token to retrieve the next page of results. Absent when there are no more results.
    - `totalElements` integer — Total number of elements across all pages
  - `statements` Statement[], required
    - `statementId` string, required — Unique identifier for the statement
    - `accountId` string, required — The account this statement belongs to
    - `statementDate` string, date-time, required — Date of the statement
    - `description` string, required — Description of the statement
    - `status` 'AVAILABLE', required — Status of a document
    - `links` Link[]
      - `href` string, required — URI of the linked resource

## Other responses

- `400` — Invalid request parameters
- `401` — Missing or invalid OAuth 2.0 Bearer token
- `403` — Insufficient permissions or IP not whitelisted
- `404` — Resource not found
- `500` — Unexpected server error

---

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