GET/v1/payouts

List payouts

Returns payout history for your account.

Authentication

Secret Key — send Authorization: Bearer YOUR_KEY header.

Response fields

FieldTypeDescription
itemsarrayPayout objects
next_cursorstring | nullPagination cursor

Code examples

bash
curl https://api.watenga.africa/v1/payouts \
  -H "Authorization: Bearer sk_test_YOUR_KEY"

Response example

json
{ "success": true, "data": { "items": [], "next_cursor": null } }