---
title: "List transfer batches"
method: GET
path: "/v1/payments/transfer-batches"
tags: ["Payments"]
---

# List transfer batches

`GET /v1/payments/transfer-batches`

Lists transfer batches for the authenticated organization or project scope.

## Query parameters

- `wallet` string — Filter by source wallet `walletId`.
- `token` string — Filter by token symbol or mint.
- `status` 'pending' | 'processing' | 'confirmed' | 'failed' | 'partially_failed' | 'archived' — Filter by transfer batch status.
- `externalId` string — Filter by caller-provided batch correlation ID.
- `page` integer — Page number (1-based).
- `pageSize` integer — Number of batches per page.

## Headers

- `x-project-id` string — Selects the active project for this request. Required for session/dashboard callers. Ignored when authenticating with an API key, whose scope is fixed to the key's project.

## Response `200`

Transfer batch list

- object — Standard paginated response envelope.
  - `data` object[], required
    - `id` string, required — Transfer batch identifier.
    - `organizationId` string, required — Organization identifier.
    - `projectId` string, required — Project identifier for the transfer batch.
    - `externalId` string, nullable, required — Caller-provided batch correlation ID.
    - `sourceWalletId` string, required — Source wallet provider ID (`walletId`).
    - `sourceAddress` string, required — Source custody wallet address.
    - `token` string, required — Token symbol or mint address.
    - `status` 'pending' | 'processing' | 'confirmed' | 'failed' | 'partially_failed' | 'archived', required — Transfer batch status.
    - `totalAmount` string, nullable, required — Total requested batch amount in UI units, when computed.
    - `recipientCount` integer, required — Number of recipient rows in the batch.
    - `transactionCount` integer, required — Number of Solana transaction chunks for the batch.
    - `createdAt` string, date-time, required — ISO 8601 timestamp.
    - `updatedAt` string, date-time, required — ISO 8601 timestamp.
  - `meta` object, required — Pagination metadata.
    - `total` integer, required — Total items.
    - `page` integer, required — Current page number.
    - `pageSize` integer, required — Items per page.
    - `hasMore` boolean, required — Whether more pages exist.
    - `requestId` string, required — Request identifier for tracing.

## Other responses

- `401` — Error
- `403` — Error
- `500` — Error

---

[API](https://skmtc.net/solana/apis/solana-developer-platform-api.md) · [All operations](https://skmtc.net/solana/apis/solana-developer-platform-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/solana/solana-developer-platform-api/revisions/672b1916ba61/schema)
