List payouts
Page through your payout batches newest-first, filtered by status.
GET
/v1/payoutspayout
Returns your payouts newest-first, with cursor pagination and an optional status filter.
GET /payoutsscope: payoutTest 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 -X GET https://sandbox.api.acute.network/v1/payouts \ -H "Authorization: Bearer acuinf_test_…"
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'queryoptionalFilter by batch status.
limitintegerqueryoptionaldefault: 20Page size, clamped to [1, 100].
cursorstringqueryoptionalThe 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[]requiredThe page of payout batches, newest-first.
pagination{ limit, hasMore, nextCursor }requiredCursor pagination metadata. Pass nextCursor back as cursor for the next page.