> ## 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.

# List Wallet Payouts

> Retrieve payout transactions from your wallets

Returns a list of payout (withdrawal) transactions made from the authenticated user's wallets.

```
GET /v1/wallet/payouts
```

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET 'https://api.yativo.com/api/v1/wallet/payouts' \
    -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
  ```
</RequestExample>

<ResponseExample>
  ```json Success theme={null}
  {
    "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"
      }
    ]
  }
  ```
</ResponseExample>
