---
title: "Get all statements for an account"
method: GET
path: "/accounts/{account_id}/statements"
tags: ["Statements"]
---

# Get all statements for an account

`GET /accounts/{account_id}/statements`

Get all statements

## Query parameters

- `starting_after` string
- `ending_before` string
- `limit` string

## Response `200`

OK

- object
  - `has_more` boolean
  - `data` Statement[]
    - union
      - object
        - `statement_id` string, required
        - `account_id` string — uuid of account
        - `statement_month` string, required
        - `type` 'credit' | 'deposit', required
        - `statement_start_date` string, required
        - `statement_end_date` string, required
        - `fees` integer, required
        - `transactions` object[], required
          - `transaction_date` string, required
          - `settled_date` string, required
          - `amount` integer, required
          - `transaction_description` string, required
          - `transaction_type` 'Fee' | 'Refund' | 'Payment' | 'Purchase' | 'Interest', required
        - `deposit` AccountDeposit
      - object
        - `statement_id` string, required
        - `account_id` string — uuid of account
        - `statement_month` string, required
        - `type` 'credit' | 'deposit', required
        - `statement_start_date` string, required
        - `statement_end_date` string, required
        - `fees` integer, required
        - `transactions` object[], required
          - `transaction_date` string, required
          - `settled_date` string, required
          - `amount` integer, required
          - `transaction_description` string, required
          - `transaction_type` 'Fee' | 'Refund' | 'Payment' | 'Purchase' | 'Interest', required
        - `credit` AccountCredit
          - `credit_limit` integer
          - `security_deposit_account_id` string, nullable

---

[API](https://skmtc.net/bond/apis/customer.md) · [All operations](https://skmtc.net/bond/apis/customer/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/bond/customer/revisions/62f5ac53144d/schema)
