---
title: "List all blockchain transfers"
method: GET
path: "/open-api/v3/cryptoconnect/transfers"
tags: ["Blockchain Transfer"]
---

# List all blockchain transfers

`GET /open-api/v3/cryptoconnect/transfers`

Searches for blockchain transfers.

## Query parameters

- `id` string, uuid
- `accountId` string, uuid, required
- `walletId` string, uuid
- `transactionHash` string
- `referenceId` string, uuid
- `startTime` string, timestamp
- `endTime` string, timestamp
- `limit` integer
- `page` integer

## Response `200`

The request has succeeded.

- object
  - `code` string, required — Code
  - `message` string, required — Message
  - `data` BlockchainTransferPagination, required
    - `total` integer, required — Total number
    - `list` BlockchainTransfer[], required — Data list
      - `id` string, uuid, required
      - `accountId` string, uuid, required
      - `referenceId` string, uuid, required
      - `source` union, required — A source of funds.
        - WalletSourceLocation — CryptoConnect wallet
          - `type` 'WALLET', required
          - `id` string, required — The id of the wallet.
        - BlockchainLocation — Blockchain wallet address
          - `type` 'BLOCKCHAIN', required
          - `chain` 'ARB' | 'AVAX' | 'BASE' | 'BNB' | 'BTC' | 'ETH' | 'MATIC' | 'OP' | 'SOL' | 'TON' | 'TRX', required
          - `address` string, required — An alphanumeric string which indicates the wallet address used to receive the transfer. Will only be set when the transfer source is a blockchain address.
      - `destination` union, required — A blockchain address.
        - BlockchainLocation — Blockchain wallet address
          - `type` 'BLOCKCHAIN', required
          - `chain` 'ARB' | 'AVAX' | 'BASE' | 'BNB' | 'BTC' | 'ETH' | 'MATIC' | 'OP' | 'SOL' | 'TON' | 'TRX', required
          - `address` string, required — An alphanumeric string which indicates the wallet address used to receive the transfer. Will only be set when the transfer source is a blockchain address.
        - WalletDestinationLocation — CryptoConnect wallet
          - `type` 'WALLET', required
          - `id` string, required — The id of the wallet.
          - `address` string, required — An alphanumeric string which indicates the wallet address used to receive the transfer. Will only be set when the transfer source is a blockchain address.
      - `amount` Money, required
        - `currency` 'BTC' | 'ETH' | 'USDC' | 'USDT' | 'WUSD', required
        - `amount` string, number, required — The transaction amount.
      - `fees` BlockchainTransferFee[], required — An array of fees applied to a transaction.
        - `currency` 'BTC' | 'ETH' | 'USDC' | 'USDT' | 'WUSD', required
        - `amount` string, number, required — The transaction amount.
        - `type` 'GAS' | 'CROSS_CHAIN' | 'SERVICE', required
      - `status` 'PENDING' | 'COMPLETE' | 'FAILED' | 'ONHOLD' | 'IN_PROGRESS' | 'REFUNDED', required
      - `transactionHash` string — A hash that uniquely identifies an on-chain transaction.
      - `riskLevel` 'LOW' | 'MIDDLE' | 'HIGH' | 'SEVERE' — KYT risk level.
      - `createTime` string, timestamp, required — Timestamp.
      - `completeTime` string, timestamp, required — Timestamp.

## Other responses

- `400` — The server could not understand the request due to invalid syntax.
- `403` — Access is forbidden.

---

[API](https://skmtc.net/interlace/apis/core-resource.md) · [All operations](https://skmtc.net/interlace/apis/core-resource/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/interlace/core-resource/revisions/29c08a4da357/schema)
