Payouts

List payouts

Returns the payouts Adfin has made to the bank account.

get/payouts

Query parameters

statusstring[]

Only return payouts in these states. Repeat the parameter to name more than one, combined with OR. Omit it to return every state.

Only return payouts in these states. Repeat the parameter to name more than one, combined with OR. Omit it to return every state.

[
  "SENT"
]
minPayoutDatestring date

Only return payouts paid out on or after this date. Inclusive.

Example:2026-08-01

Only return payouts paid out on or after this date. Inclusive.

maxPayoutDatestring date

Only return payouts paid out on or before this date. Inclusive.

Example:2026-08-31

Only return payouts paid out on or before this date. Inclusive.

pageinteger

Which page to return, counting from one.

Example:1

Which page to return, counting from one.

sizeinteger

How many payouts to return per page. A request for more than the maximum is refused.

Example:50

How many payouts to return per page. A request for more than the maximum is refused.

sort'payoutDate,desc' | 'payoutDate,asc'

How to order the page.

How to order the page.

Response

The requested page of payouts.

Example response

{
  "payouts": [
    {
      "payoutDate": "2026-08-24"
    }
  ]
}

Changes