---
title: "Lists all bank transactions"
method: GET
path: "/bank-transactions"
tags: ["Bank Transactions"]
---

# Lists all bank transactions

`GET /bank-transactions`

Streams imported or manually entered cash activity for reconciliation, optionally scoped by bank account, subsidiary, or updated-since filters.
Pair results with retrieve-a-bank-transaction when you need memo-level detail before marking items cleared.

## Query parameters

- `bank_account_id` string, uuid
- `subsidiary_id` string, uuid
- `updated.gt` string, date-time
- `date.gte` string, date
- `date.lte` string, date
- `sort_by` 'created' | 'updated'
- `limit` integer
- `cursor` string — If defined, a cursor to retrieve the next page.

## Response `200`

OK

- object
  - `bank_transactions` BankTransaction[], required
    - `id` string, uuid, required
    - `bank_account_id` string, uuid, required
    - `subsidiary_id` string, uuid, required
    - `date` string, date, required
    - `name` string, required — Transaction description
    - `merchant` string, required — Merchant or counterparty name
    - `net_amount` RoundedMonetaryAmount, required — A monetary amount that must be rounded to the currency's default decimal places (e.g., 2 decimal places for USD).
      - `amount` string, required — Monetary amount in decimal format, using a period (.) as the decimal separator. Must be rounded to the currency's default decimal places (e.g. '1.01' in USD represents 1 dollar and 1 cent).
      - `currency` string, required — Currency code following ISO-4217
    - `fee` RoundedMonetaryAmount, required — A monetary amount that must be rounded to the currency's default decimal places (e.g., 2 decimal places for USD).
      - `amount` string, required — Monetary amount in decimal format, using a period (.) as the decimal separator. Must be rounded to the currency's default decimal places (e.g. '1.01' in USD represents 1 dollar and 1 cent).
      - `currency` string, required — Currency code following ISO-4217
    - `pending` boolean, required — Whether the transaction is still pending
    - `excluded` boolean, required — Whether the transaction is excluded from reconciliation
    - `external_references` ExternalReference[]
      - `type` string, required
      - `id` string, required
      - `url` string, uri
  - `pagination` Pagination, required
    - `next_cursor` string — If defined, a cursor to retrieve the next page.

## Other responses

- `default` — Error

---

[API](https://skmtc.net/rillet/apis/rillet-accounting-api.md) · [All operations](https://skmtc.net/rillet/apis/rillet-accounting-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/rillet/rillet-accounting-api/versions/a2ab794dd5f2/schema)
