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

# List all batch crypto transfers

`GET /v2/wallets/transfers/batches`

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

## Query parameters

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

## Response `200`

Success

- BatchCryptoTransferListObject
  - `count` integer, required
  - `records` object[], required
    - `transferType` string, required
    - `transferDetails` object, required
      - `id` string, uuid, required
      - `requestId` string, uuid, required
      - `createdAt` string, date-time, required
      - `updatedAt` string, date-time, required
      - `chain` 'POLYGON', required
      - `currency` 'usdc', required
      - `contractAddress` string, required
      - `status` 'NOT_INITIATED' | 'CREATED' | 'INITIATED' | 'PENDING' | 'COMPLETED' | 'FAILED' | 'UNKNOWN', required
      - `failedReason` string, nullable
      - `source` object, required
        - `userId` string, uuid, required
        - `walletAddress` string, required
        - `walletType` 'INDIVIDUAL' | 'BUSINESS', required
      - `destination` object, required
        - `batch` object[], required
          - `amount` string, required
          - `userId` string, uuid
          - `walletAddress` string
      - `receipt` object, required
        - `transactionHash` string, required
        - `userOpHash` 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
  - `nextCursor` string, date-time, required

## 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/revisions/74d9e530fbea/schema)
