---
title: "List transactions"
method: GET
path: "/v1/transactions"
tags: ["Transactions"]
---

# List transactions

`GET /v1/transactions`

Lists transactions for an account with cursor-based pagination.

## Query parameters

- `limit` integer
- `cursor` string
- `account_id` string, uuid, required
- `created_at.gte` string, date-time
- `created_at.lte` string, date-time

## Response `200`

Paginated list of transactions

- ListTransactionsResponseDto
  - `data` object[], required
    - `id` string, uuid, required — Unique identifier of the transaction.
    - `type` 'transaction', required — Resource type discriminator.
    - `side` 'credit' | 'debit', required — Direction of the movement relative to the merchant account.
    - `status` 'pending' | 'completed' | 'failed', required — Lifecycle state of the transaction.
    - `amount` string, required — Absolute amount as a string decimal (e.g. "100.50").
    - `currency` 'EUR' | 'GBP' | 'USD' | 'USDC', required — ISO 4217 fiat or crypto currency code of the amount.
    - `account_id` string, uuid, required — ID of the merchant account this transaction settled on.
    - `product` object, nullable, required — The product that caused this transaction, or null when no product is linked.
      - `type` 'deposit' | 'deposit_return' | 'refund' | 'payout', required — Type of the product that caused this transaction.
      - `id` string, required — Identifier of the product resource that caused this transaction.
    - `counterparty` union, required — Bank account or wallet of the other party, or null when not known.
      - IbanFinancialAddress
        - `type` 'iban', required — Discriminator for IBAN financial address.
        - `iban` string, required — International Bank Account Number.
        - `account_holder_name` string, required — Name of the account holder.
        - `bic` string, nullable, required — Bank Identifier Code, or null if not provided.
      - SortCodeFinancialAddress
        - `type` 'sort_code', required — Discriminator for UK sort code financial address.
        - `sort_code` string, required — UK sort code (6 digits).
        - `account_number` string, required — UK account number (8 digits).
        - `account_holder_name` string, required — Name of the account holder.
      - AbaFinancialAddress
        - `type` 'aba', required — Discriminator for ABA wire financial address.
        - `routing_number` string, required — ABA routing number (9 digits).
        - `account_number` string, required — Bank account number.
        - `account_holder_name` string, required — Name of the account holder.
      - CryptoWalletFinancialAddress
        - `type` 'crypto_wallet', required — Discriminator for crypto wallet financial address.
        - `address` string, required — Wallet address on the specified blockchain.
        - `blockchain` 'bitcoin' | 'ethereum' | 'solana' | 'polygon' | 'bitcoin_testnet4' | 'ethereum_sepolia' | 'solana_devnet' | 'polygon_amoy', required — Blockchain network for the crypto wallet.
    - `bank_statement_reference` string, nullable, required — Reference visible on the bank statement, or null when not applicable.
    - `created_at` string, date-time, required — ISO 8601 UTC timestamp when the transaction was recorded.
  - `has_more` boolean, required
  - `next_cursor` string, nullable, required

## Changes

- **2026-08-18** `37109d1ed976` — 3 breaking, 5 info
  - added the pattern `^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z))$` to the `query` request parameter `created_at.gte`
  - added the pattern `^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z))$` to the `query` request parameter `created_at.lte`
  - added the pattern `^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000)$` to the `query` request parameter `account_id`
  - added `#/components/schemas/IbanFinancialAddress, #/components/schemas/SortCodeFinancialAddress, #/components/schemas/AbaFinancialAddress, #/components/schemas/CryptoWalletFinancialAddress` to the `data/items/counterparty` response property `anyOf` list for the response status `200`
  - …4 more
- …earlier changes not shown

[Full history](https://skmtc.dev/augustus/apis/augustus-banking-api/changes/v1/transactions/get.md)

---

[API](https://skmtc.dev/augustus/apis/augustus-banking-api.md) · [All operations](https://skmtc.dev/augustus/apis/augustus-banking-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/augustus/augustus-banking-api/revisions/37109d1ed976/schema)
