Skip to main content

List all Payouts

Retrieve a list of payouts.

Endpoint

GET /v1/payouts

Scope

payouts:all

Request

Query Parameters

All these parameters are optional.

NameTypeDescription
pageintegerThe number of the page to return.
pageSizeintegerThe number of the size of the page.
statusPENDING
ABORTED
IN_PROGRESS
FULLFILLED
The status of the payouts to retrieve

Example

GET /v1/payouts?page=1&pageSize=30&status='SUCCEEDED'

Response

NameTypeDescription
outputArray<Payout>The list of payouts.
codestringThe response status code text.

Test the endpoint

curl -X GET 'https://api.minteo.finance/v1/payouts' \
-H 'Authorization: Bearer <your-api-key>'