Skip to main content

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 details for a specific payout.
GET https://api.yativo.com/api/v1/payout/fetch/{payout_id}
payout_id
string
required
The UUID of the payout to retrieve.
curl -X GET 'https://api.yativo.com/api/v1/payout/fetch/txn-a1b2c3d4-e5f6-7890-abcd-ef1234567890' \
  -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",
    "updated_at": "2026-06-01T10:02:00.000000Z"
  }
}