---
title: "List deposits"
method: GET
path: "/v1/deposits"
tags: ["Deposits"]
---

# List deposits

`GET /v1/deposits`

Lists deposits for the merchant with cursor-based pagination.

## Query parameters

- `limit` integer
- `cursor` string
- `status` 'received' | 'in_return' | 'returned' | 'return_failed' | 'return_returned'
- `created_at.gte` string, date-time
- `created_at.lte` string, date-time

## Response `200`

Paginated list of deposits

- ListDepositsResponseDto
  - `data` object[], required
    - `id` string, uuid, required — Unique identifier of the deposit.
    - `type` 'deposit', required — Resource type discriminator.
    - `status` 'received' | 'in_return' | 'returned' | 'return_failed' | 'return_returned', required — Current status of the deposit.
    - `amount` string, required — Amount as a string decimal (e.g. "100.50").
    - `currency` 'EUR' | 'GBP' | 'USD' | 'USDC', required — Supported fiat or crypto currency code for the deposit amount.
    - `source` union, required — Counterparty bank account or crypto wallet that sent the funds.
      - object
        - `type` 'iban', required — Discriminator for IBAN source.
        - `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.
      - object
        - `type` 'sort_code', required — Discriminator for UK sort code source.
        - `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.
      - object
        - `type` 'aba', required — Discriminator for ABA wire source.
        - `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.
      - object
        - `type` 'crypto_wallet', required — Discriminator for crypto wallet source.
        - `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.
    - `destination_account_id` string, uuid, required — ID of the merchant account that received the deposit.
    - `bank_statement_reference` string, nullable, required — Reference visible on the bank statement, or null when not applicable.
    - `rail` 'sepa_instant' | 'faster_payments' | 'sepa' | 'elixir' | 'express_elixir' | 'sek_account_to_account' | 'sumclearing' | 'straksclearing' | 'swift' | 'internal' | 'target' | 'ach' | 'fedwire' | 'btc' | 'btc_testnet4' | 'eth' | 'eth_sepolia' | 'sol' | 'sol_devnet' | 'matic' | 'matic_amoy' | 'null', nullable, required — Payment rail or blockchain used for the deposit, or null when unknown.
    - `tx_hash` string, nullable, required — Transaction hash for crypto deposits, or null when not known.
    - `returns` string[], required — Array of deposit return IDs associated with this deposit.
    - `created_at` string, date-time, required — ISO 8601 UTC timestamp when the deposit was created.
    - `updated_at` string, date-time, required — ISO 8601 UTC timestamp when the deposit was last updated.
  - `has_more` boolean, required
  - `next_cursor` string, nullable, required

## Changes

- **2026-08-18** `37109d1ed976` — 2 breaking, 1 warning, 7 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 new `undefined` enum value to the `data/items/rail` response property for the response status `200`
  - added `subschema #1: IBAN, subschema #2: UK Sort Code, subschema #3: ABA, subschema #4: Wallet` to the `data/items/source` response property `anyOf` list for the response status `200`
  - …6 more
- …earlier changes not shown

[Full history](https://skmtc.dev/augustus/apis/augustus-banking-api/changes/v1/deposits/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)
