# List Customer Statements

This endpoint retrieves a list of all available account statements (e.g., `BANK`, `BROKERAGE`) and tax documents (`1099-INT`, `1099-B`).
Returns a paginated `StatementListResponse`. The list can be filtered by `account`, statement `type`, and date `key` (e.g., "2023" or "2023-01").
Customers can expect monthly statements to be available by the 15th of every month.

Endpoint: GET /api/v1/statements/
Version: Version: 0d14821f
Security: CodeBearer

## Security:

  - `CodeBearer` (unknown)
    oauth2 scopes: pockets.read

## Query parameters:

  - `type[]` (array)

  - `cursor` (string)

  - `limit` (integer)

  - `order` (string)

  - `account[]` (any)

  - `key` (any)

## Response 200:

  - `200` (unknown)
    Successful Response

## Response 200 fields (application/json):

  - `prev_page` (any)

  - `next_page` (any)

  - `items` (array, required)

  - `items.id` (string, required)

  - `items.jiko_account_id` (any, required)

  - `items.type` (string, required)
    Enum: "1099B", "1099INT", "BANK", "BROKERAGE", "CONSOLIDATED_BANK", "CONSOLIDATED_BROKERAGE"

  - `items.key` (string, required)

  - `items.pdf_download_url` (string, required)

  - `items.time_created` (string, required)

  - `items.csv_zip_download_url` (any, required)

  - `items.object_type` (string, required)

  - `object_type` (string)

## Response 404:

  - `404` (unknown)
    Not found

## Response 422:

  - `422` (unknown)
    Validation Error

## Response 422 fields (application/json):

  - `detail` (array)

  - `detail.loc` (array, required)

  - `detail.msg` (string, required)

  - `detail.type` (string, required)

  - `detail.input` (any)

  - `detail.ctx` (object)

