---
title: "List all crypto transfers"
method: GET
path: "/v2/wallets/transfers"
tags: ["Crypto Transfer"]
---

# List all crypto transfers

`GET /v2/wallets/transfers`

Returns a list of crypto transfers associated with a user under your organization. The crypto transfers are returned sorted by creation date, with the most recent crypto transfers appearing first.

## Query parameters

- `userId` string
- `limit` string
- `createdBefore` string, date
- `createdAfter` string, date

## Response `200`

Success

- CryptoToCryptoAllRecordsObject
  - `count` integer
  - `records` object[]
    - `transferType` string
    - `transferDetails` object
      - `id` string, uuid
      - `requestId` string, uuid
      - `createdAt` string, date-time
      - `updatedAt` string, date-time
      - `chain` string
      - `currency` string
      - `contractAddress` string
      - `status` string
      - `failedReason` string
      - `approval` object
        - `id` string, uuid
        - `status` string
        - `createdAt` string, date-time
        - `updatedAt` string, date-time
        - `transferId` string, uuid
        - `transferType` string
        - `fromDashboard` boolean
        - `initiatorProfileId` string, uuid
        - `votes` object[] — Array of approval votes (only present when status is PENDING_APPROVAL or REJECTED)
          - `approverId` string, uuid
          - `vote` 'APPROVE' | 'REJECT'
          - `comment` string
          - `createdAt` string, date-time
      - `source` object
        - `userId` string, uuid
        - `walletAddress` string
        - `walletType` string
        - `user` object
          - `email` string
          - `lastName` string
          - `firstName` string
          - `businessName` string
      - `destination` object
        - `userId` string, uuid
        - `walletType` string
        - `walletAddress` string
        - `user` object
          - `email` string
          - `lastName` string
          - `firstName` string
          - `businessName` string
      - `amount` number, float
      - `amountIncludeDeveloperFee` number, float
      - `receipt` object
        - `transactionHash` string
        - `userOpHash` string
      - `developerFee` object
        - `feeId` string, uuid
        - `feeType` string
        - `feeAmount` number, float
        - `feePercent` number, float
        - `status` string
        - `transactionHash` string
        - `failedReason` string
  - `nextCursor` string — The `createdAt` timestamp of the last record in the current page. Pass this as `createdBefore` in the next request to retrieve the next page of results.

## Other responses

- `401` — Unauthorized
- `404` — Resource not found
- `500` — Internal Server Error

---

[API](https://skmtc.net/hifibridge/apis/hifi-api.md) · [All operations](https://skmtc.net/hifibridge/apis/hifi-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/hifibridge/hifi-api/versions/74d9e530fbea/schema)
