Skip to main content
Returns a list of payout (withdrawal) transactions made from the authenticated user’s wallets.
GET /v1/wallet/payouts
curl -X GET 'https://api.yativo.com/api/v1/wallet/payouts' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
  "status": "success",
  "status_code": 200,
  "message": "Request successful",
  "data": [
    {
      "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "amount": "200.00",
      "currency": "USD",
      "status": "completed",
      "recipient": "John Smith",
      "reference": "PAY-20260401-001",
      "created_at": "2026-04-01T10:00:00.000000Z"
    },
    {
      "id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
      "amount": "1500.00",
      "currency": "BRL",
      "status": "pending",
      "recipient": "Maria Santos",
      "reference": "PAY-20260401-002",
      "created_at": "2026-04-01T11:30:00.000000Z"
    }
  ]
}