---
title: "List bank statement transactions"
method: GET
path: "/bank-accounts/{bank_account_id}/statement-transactions/"
tags: ["Bank Statement Transactions"]
---

# List bank statement transactions

`GET /bank-accounts/{bank_account_id}/statement-transactions/`

Endpoint for retrieving a list of bank statement transactions.

## Path parameters

- `bank_account_id` string, required

## Query parameters

- `page` integer
- `page_size` integer

## Response `200`

- PaginatedBankStatementTransactionList
  - `count` integer, required
  - `next` string, uri, nullable
  - `previous` string, uri, nullable
  - `results` BankStatementTransaction[], required
    - `amount` number, double, required — The statement amount in the transaction.
    - `bank_account` string, required — The bank account associated with this transaction.
    - `bank_reference` string
    - `calculated_balance` number, double, required — The balance computed from all statements, including this transaction.
    - `cost_center` string, nullable — The cost center associated with this transaction, if any.
    - `created_ts` string, date-time, required — The timestamp in UTC when the transaction was created
    - `date` string, date, required
    - `description` string
    - `id` string, required — The unique identifier of the bank statement transaction.
    - `is_posted` boolean, required — Indicates whether the transaction has been posted to the ledger.
    - `legacy_id` string, required — [Deprecated] The legacy identifier of the bank statement transaction.
    - `modified_ts` string, date-time, required — The timestamp in UTC when the transaction was last modified
    - `project` string, nullable — The project associated with this transaction, if any.
    - `reference` string
    - `statement_balance` number, double, required — The balance reported by the bank after this transaction.

---

[API](https://skmtc.net/wafeq/apis/wafeq-public-api.md) · [All operations](https://skmtc.net/wafeq/apis/wafeq-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/wafeq/wafeq-public-api/revisions/36816b4fce7f/schema)
