> ## Documentation Index
> Fetch the complete documentation index at: https://developer.quickei.io/llms.txt
> Use this file to discover all available pages before exploring further.

# List Payouts

> Retrieve a paginated list of payouts

Retrieve a paginated list of payouts for your merchant account.

## Endpoint

`GET https://quickei.io/pay/sandbox/api/v1/payouts`

## Query Parameters

<ParamField query="status" type="string">
  Filter by status: `pending`, `processing`, `completed`, `failed`
</ParamField>

<ParamField query="from_date" type="string">
  Start date filter in ISO 8601 format (e.g. `2026-03-01`)
</ParamField>

<ParamField query="to_date" type="string">
  End date filter in ISO 8601 format (e.g. `2026-03-31`)
</ParamField>

<ParamField query="page" type="integer">
  Page number (default: `1`)
</ParamField>

<ParamField query="per_page" type="integer">
  Results per page (1–100, default: `20`)
</ParamField>

## Example Request

```bash theme={null}
GET /merchant-api/pos/v1/payouts?status=completed&from_date=2026-03-01&to_date=2026-03-31&page=1&per_page=20
Authorization: Basic {base64_credentials}
```

## Success Response `200`

```json theme={null}
{
  "message": {
    "success": ["Payouts retrieved"]
  },
  "data": {
    "payouts": [
      {
        "id": "PYT-20260323-X4K9M2",
        "reference": "PAY-2026-0042",
        "amount": 10000,
        "currency": "XAF",
        "fee": 200,
        "total_deducted": 10200,
        "status": "completed",
        "recipient": {
          "type": "mobile_money",
          "mobile_code": "237",
          "mobile_number": "670000000",
          "operator": "mtn"
        },
        "description": "Salary March 2026",
        "failure_reason": null,
        "processed_at": "2026-03-23T10:31:15+00:00",
        "created_at": "2026-03-23T10:30:00+00:00"
      },
      {
        "id": "PYT-20260322-B7N3P1",
        "reference": "PAY-2026-0041",
        "amount": 50000,
        "currency": "XAF",
        "fee": 1000,
        "total_deducted": 51000,
        "status": "completed",
        "recipient": {
          "type": "bank_transfer",
          "bank_code": "AFRIFRPP",
          "account_number": "CM2100010001000000000123",
          "account_name": "Jean Dupont"
        },
        "description": "Supplier payment",
        "failure_reason": null,
        "processed_at": "2026-03-22T16:45:20+00:00",
        "created_at": "2026-03-22T16:40:00+00:00"
      }
    ],
    "pagination": {
      "current_page": 1,
      "per_page": 20,
      "total": 42,
      "last_page": 3
    }
  }
}
```
