Skip to main content
GET
/
api
/
payouts
List Payouts
curl --request GET \
  --url https://api.example.com/api/payouts \
  --header 'Authorization: <authorization>'
[
  {
    "id": "pay_abc123",
    "transaction_type": "payout",
    "payout_amount": 4425.00,
    "source_currency": "USD",
    "payout_currency": "MYR",
    "status": "completed",
    "recipient_id": "rec_xyz",
    "payment_method": "fiat_bank_transfer",
    "created_at": "2026-03-01T10:00:00Z",
    "completed_at": "2026-03-01T10:05:00Z"
  }
]
Authorization
string
required
Bearer token from Auth0
limit
integer
Maximum number of results (default: 1000)
offset
integer
Number of results to skip (default: 0)
[
  {
    "id": "pay_abc123",
    "transaction_type": "payout",
    "payout_amount": 4425.00,
    "source_currency": "USD",
    "payout_currency": "MYR",
    "status": "completed",
    "recipient_id": "rec_xyz",
    "payment_method": "fiat_bank_transfer",
    "created_at": "2026-03-01T10:00:00Z",
    "completed_at": "2026-03-01T10:05:00Z"
  }
]