Skip to main content
GET
/
payout_batches
List payout batches
curl --request GET \
  --url https://api.withacclaim.com/v1/payout_batches \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "ba_r8PxTnQ5Dv",
      "status": "ReadyToProcess",
      "description": "<string>",
      "failure_code": "<string>",
      "failure_message": "<string>",
      "processed_at": "2023-11-07T05:31:56Z",
      "totals": {
        "count": 100,
        "amount": 2500000,
        "succeeded": 95,
        "failed": 5
      },
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "next_cursor": "<string>",
  "has_more": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer
default:25
Required range: 1 <= x <= 100
cursor
string
status
enum<string>
Available options:
ReadyToProcess,
Processing,
Succeeded,
Failed,
Canceled

Response

A list of payout batches.

data
object[]
next_cursor
string | null
has_more
boolean
Last modified on April 16, 2026