Skip to content

List payouts

GET /v1/partners/payouts

Your own payouts, newest first.

Permissionread-gateway
Answers200
GET /v1/partners/payouts?page=1&limit=50&status=succeeded&from=2026-09-01&to=2026-09-30
Authorization: Bearer sk_live_xxxxxxxxxxxxxxxx
x-partner-signature: <hmac-sha256 of the raw body, hex>
QueryNotes
page1-based. Defaults to 1
limitDefaults to 50, capped at 100
statuspending, succeeded, or failed
external_refYour own reference, matched exactly
from / toInclusive. A bare YYYY-MM-DD covers the whole day

Same paging and period rules as List payments.

{
"data": {
"items": [
{
"id": "8a21…",
"reference": "PGW-8A21C4…",
"status": "succeeded",
"is_final": true,
"amount": "500000.0000",
"fee": "5000.0000",
"net_amount": "495000.0000",
"currency": "IDR",
"bank_code": "BRI",
"created_at": "2026-09-03T07:10:00.000Z",
"finalized_at": "2026-09-03T07:12:00.000Z"
}
],
"page": 1,
"limit": 50,
"total": 18
},
"request_id": "req_…"
}

Items are the same shape as the detail endpoint.