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

# Get a statement for an account

`GET /accounts/{account_id}/statements/{yyyy}/{mm}`

Get a statement by Year and Month

## Response `200`

OK

- 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)
