List payouts

Page through your payout batches newest-first, filtered by status.

GET/v1/payouts
payout

Returns your payouts newest-first, with cursor pagination and an optional status filter.

Try it, for realGET /payoutsscope: payout

Test keys only. Never paste a live key. Your key is stored only in this browser (localStorage) and sent only to the same-origin playground proxy.

Equivalent request (curl / TypeScript)
curl
curl -X GET https://sandbox.api.acute.network/v1/payouts \
  -H "Authorization: Bearer acuinf_test_…"
TypeScript
const res = await fetch("https://sandbox.api.acute.network/v1/payouts", {
  method: "GET",
  headers: {
    Authorization: `Bearer ${process.env.ACUTE_TEST_KEY}`,
  },
});
const { data, meta } = await res.json();

# list processing payouts
curl https://sandbox.api.acute.network/v1/payouts?status=processing&limit=20 \
  -H "Authorization: Bearer acuinf_test_…"
{
  "success": true,
  "statusCode": 200,
  "data": [ /* …PayoutResponseData[] … */ ],
  "pagination": { "limit": 20, "hasMore": true, "nextCursor": "eyJjcmVhdGVkQXQiOiIyMDI2…" },
  "meta": { "requestId": "req_4f9c2a7e1b0d8c3a5e6f10a2" }
}

status'processing' | 'completed' | 'partially_completed' | 'failed'queryoptional

Filter by batch status.

limitintegerqueryoptionaldefault: 20

Page size, clamped to [1, 100].

cursorstringqueryoptional

The previous page's nextCursor.

The data array holds PayoutResponseData items (each with its items breakdown - the shape returned by create a payout). The pagination block carries limit, hasMore, and nextCursor - see the envelope.

dataPayoutResponseData[]required

The page of payout batches, newest-first.

pagination{ limit, hasMore, nextCursor }required

Cursor pagination metadata. Pass nextCursor back as cursor for the next page.