List all Payouts
Retrieve a list of payouts.
Endpoint
GET /v1/payouts
Scope
payouts:all
Request
Query Parameters
All these parameters are optional.
Name | Type | Description |
---|---|---|
page | integer | The number of the page to return. |
pageSize | integer | The number of the size of the page. |
status | PENDING ABORTED IN_PROGRESS FULLFILLED | The status of the payouts to retrieve |
Example
GET /v1/payouts?page=1&pageSize=30&status='SUCCEEDED'
Response
Name | Type | Description |
---|---|---|
output | Array<Payout> | The list of payouts. |
code | string | The response status code text. |
Test the endpoint
- Production
- Sandbox
curl -X GET 'https://api.minteo.finance/v1/payouts' \
-H 'Authorization: Bearer <your-api-key>'
curl -X GET 'https://api.sandbox.minteo.finance/v1/payouts' \
-H 'Authorization: Bearer <your-api-key>'