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

# List Transactions

`GET /v1/transactions`

Retrieve deposits, withdrawals and transfers with optional filtering and pagination.

## Query parameters

- `transactionType` 'DEPOSIT' | 'WITHDRAWAL' | 'TRANSFER'
- `transactionStatus` 'FAILED' | 'PROCESSING' | 'CONFIRMING' | 'COMPLETED'
- `createdAtStart` string, date-time
- `createdAtEnd` string, date-time
- `accountId` string, uuid
- `after` string
- `limit` string, integer
- `sortField` string
- `sortDirection` 'ASC' | 'DESC'

## Response `200`

Successful response

- object
  - `after` string — The token of the last item in the response
  - `totalCount` string, integer — The total number of items in the entire filtered data set
  - `items` union[]
    - union
      - Deposit
        - `depositId` string, uuid
        - `transactionType` 'DEPOSIT' | 'WITHDRAWAL' | 'TRANSFER'
        - `transactionStatus` 'FAILED' | 'PROCESSING' | 'CONFIRMING' | 'COMPLETED'
        - `customerId` string, uuid, nullable
        - `accountId` string, uuid, nullable
        - `quantity` string, number
        - `currency` string
        - `confirmations` string, integer
        - `txHash` string
        - `network` string
        - `sourceAddresses` object[]
          - `address` string
        - `receivedAt` string, date-time
        - `completedAt` string, date-time
        - `externalDepositId` string, nullable
      - Withdrawal
        - `transactionType` 'DEPOSIT' | 'WITHDRAWAL' | 'TRANSFER', required
        - `transactionStatus` 'FAILED' | 'PROCESSING' | 'CONFIRMING' | 'COMPLETED'
        - `withdrawalId` string, uuid, required
        - `customerId` string, uuid, required
        - `accountId` string, uuid, required
        - `withdrawalCurrency` string, required
        - `netWithdrawalQuantity` string, required
        - `withdrawalFeeType` 'FIXED' | 'VARIABLE' | 'LIVE', required
        - `withdrawalFeeRate` string, required
        - `withdrawalFeeQuantity` string, required
        - `withdrawalFeeCurrency` string, required
        - `memo` string, nullable
        - `txHash` string, nullable
        - `clientMemo` string, nullable
        - `grossWithdrawalQuantity` string, required
        - `requestedAt` string, date-time, required
        - `completedAt` string, date-time, nullable
      - TransactionTransfer
        - `transactionType` 'DEPOSIT' | 'WITHDRAWAL' | 'TRANSFER', required
        - `transactionStatus` 'FAILED' | 'PROCESSING' | 'CONFIRMING' | 'COMPLETED', required
        - `transferId` string, uuid, required
        - `transferDirection` 'IN' | 'OUT', required — Direction of the transfer: IN for beneficiary side, OUT for source side
        - `customerId` string, uuid, required
        - `accountId` 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)
