---
title: "Transfers"
method: GET
path: "/v1/transfers"
tags: ["Transfers"]
---

# Transfers

`GET /v1/transfers`

Retrieve a list of transfers with optional filtering and pagination.

## Query parameters

- `after` string
- `limit` string, integer
- `transferId` string, uuid
- `sourceAccountId` string, uuid
- `sourceCustomerId` string, uuid
- `beneficiaryAccountId` string, uuid
- `beneficiaryId` string, uuid
- `transferCurrency` string
- `externalReferenceId` string
- `transactionStatus` 'PROCESSING' | 'COMPLETED' | 'FAILED'
- `requestedAtStart` string, date-time
- `requestedAtEnd` string, date-time

## Response `200`

Successful response

- object
  - `after` string, nullable — The token of the last item in the response
  - `totalCount` string, integer — The total number of items in the entire filtered data set
  - `items` Transfer[]
    - `transactionType` 'DEPOSIT' | 'WITHDRAWAL' | 'TRANSFER', required
    - `transactionStatus` 'FAILED' | 'PROCESSING' | 'CONFIRMING' | 'COMPLETED', required
    - `transferId` string, uuid, required
    - `sourceAccountId` string, uuid, required
    - `sourceCustomerId` string, uuid, required
    - `beneficiaryAccountId` string, uuid, required
    - `beneficiaryId` string, uuid, required
    - `transferQuantity` string, required
    - `transferCurrency` string, required
    - `transferReason` string, nullable
    - `externalReferenceId` string, nullable — Client-provided reference string to be stored with the transfer record
    - `requestedAt` string, date-time, required
    - `completedAt` string, date-time, nullable, required

## Other responses

- `400` — Validation Error
- `401` — Unauthorized
- `403` — Insufficient Privileges
- `4XX` — Client error
- `5XX` — Server error

---

[API](https://skmtc.net/aquanow/apis/aquanow-cams-rest-api.md) · [All operations](https://skmtc.net/aquanow/apis/aquanow-cams-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/aquanow/aquanow-cams-rest-api/revisions/c62a02b27407/schema)
