---
title: "Retrieve a list of all statements associated with an Item."
method: POST
path: "/statements/list"
tags: ["plaid"]
---

# Retrieve a list of all statements associated with an Item.

`POST /statements/list`

The `/statements/list` endpoint retrieves a list of all statements associated with an Item.

## Request body

- StatementsListRequest — StatementsListRequest defines the request schema for `/statements/list`
  - `access_token` string, required — The access token associated with the Item for which data is being requested.
  - `client_id` string — Your Plaid API `client_id`. The `client_id` is required and may be provided either in the `PLAID-CLIENT-ID` header or as part of a request body.
  - `secret` string — Your Plaid API `secret`. The `secret` is required and may be provided either in the `PLAID-SECRET` header or as part of a request body.

## Response `200`

OK

- StatementsListResponse — StatementsListResponse defines the response schema for `/statements/list`
  - `accounts` StatementsAccount[], required
    - `account_id` string, required — Plaid's unique identifier for the account.
    - `account_mask` string, required — The last 2-4 alphanumeric characters of an account's official account number. Note that the mask may be non-unique between an Item's accounts, and it may also not match the mask that the bank displays to the user.
    - `account_name` string, required — The name of the account, either assigned by the user or by the financial institution itself.
    - `account_official_name` string, required — The official name of the account as given by the financial institution.
    - `account_subtype` string, required — The subtype of the account. For a full list of valid types and subtypes, see the [Account schema](https://plaid.com/docs/api/accounts#account-type-schema).
    - `account_type` string, required — The type of account. For a full list of valid types and subtypes, see the [Account schema](https://plaid.com/docs/api/accounts#account-type-schema).
    - `statements` StatementsStatement[], required — The list of statements' metadata associated with this account.
      - `statement_id` string, required — Plaid's unique identifier for the statement.
      - `date_posted` string, date, nullable — Date when the statement was posted by the FI, if known
      - `month` integer, required — Month of the year. Possible values: 1 through 12 (January through December).
      - `year` integer, required — The year of the statement, e.g. 2024.
  - `institution_id` string, required — The Plaid Institution ID associated with the Item.
  - `institution_name` string, required — The name of the institution associated with the Item.
  - `item_id` string, required — The Plaid Item ID. The `item_id` is always unique; linking the same account at the same institution twice will result in two Items with different `item_id` values. Like all Plaid identifiers, the `item_id` is case-sensitive.
  - `request_id` string, required — A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.

## Other responses

- `default` — Error response

---

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