---
title: "List returns"
method: GET
path: "/v1/returns"
tags: ["Returns"]
---

# List returns

`GET /v1/returns`

Lists deposit returns for the merchant with cursor-based pagination.

## Query parameters

- `limit` integer
- `cursor` string
- `status` 'pending' | 'paid' | 'failed' | 'returned'
- `deposit_id` string, uuid
- `created_at.gte` string, date-time
- `created_at.lte` string, date-time

## Response `200`

Paginated list of returns

- ListReturnsResponseDto
  - `data` object[], required
    - `id` string, uuid, required — Unique identifier of the return.
    - `type` 'return', required — Type of the resource.
    - `status` 'pending' | 'paid' | 'failed' | 'returned', required — Current status of the return.
    - `deposit_id` string, uuid, required — ID of the parent deposit.
    - `amount` string, required — Amount as a string decimal (e.g. "100.50").
    - `currency` 'EUR' | 'GBP' | 'USD' | 'USDC', required — Currency code (ISO 4217 currency code or crypto currency code).
    - `failure` object, nullable, required — Failure details when status is failed, otherwise null.
      - `code` 'account_closed' | 'account_blocked' | 'insufficient_funds' | 'invalid_account_format' | 'invalid_instruction' | 'invalid_amount' | 'invalid_time' | 'duplicate_transaction' | 'payee_verification_failed' | 'system_error' | 'provider_system_error' | 'rejected_by_correspondent_bank' | 'blocked_by_review' | 'unknown', required — Failure code.
      - `message` string, required — Human-readable description of the failure.
      - `retry` boolean, required — Whether the return can be retried.
    - `created_at` string, date-time, required — ISO 8601 UTC timestamp when the return was created.
    - `updated_at` string, date-time, required — ISO 8601 UTC timestamp when the return was last updated.
  - `has_more` boolean, required
  - `next_cursor` string, nullable, required

## Changes

- **2026-08-17** `3ed0a0aba68b` — 4 info
  - removed the `BTC` enum value from the `data/items/currency` response property for the response status `200`
  - removed the `ETH` enum value from the `data/items/currency` response property for the response status `200`
  - removed the `POL` enum value from the `data/items/currency` response property for the response status `200`
  - removed the `SOL` enum value from the `data/items/currency` response property for the response status `200`
- **2026-07-13** `d92a4abea6c4` — 3 warning
  - added the new `ETH` enum value to the `data/items/currency` response property for the response status `200`
  - added the new `POL` enum value to the `data/items/currency` response property for the response status `200`
  - added the new `SOL` enum value to the `data/items/currency` response property for the response status `200`
- **2026-06-17** `74deb4d45f9f` — 1 warning
  - added the new `BTC` enum value to the `data/items/currency` response property for the response status `200`
- …earlier changes not shown

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