Documentation Index
Fetch the complete documentation index at: https://docs.yativo.com/llms.txt
Use this file to discover all available pages before exploring further.
Returns a paginated list of all payouts.
GET https://api.yativo.com/api/v1/payout/get
curl -X GET 'https://api.yativo.com/api/v1/payout/get' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
"status": "success",
"status_code": 200,
"message": "Request successful",
"data": [
{
"id": "txn-a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"amount": "250.00",
"currency": "CLP",
"status": "completed",
"beneficiary_id": 42,
"created_at": "2026-06-01T10:00:00.000000Z"
}
],
"pagination": {
"total": 48,
"per_page": 15,
"current_page": 1,
"last_page": 4
}
}