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

# List Payouts

> List all payouts with pagination

<Info>**Scope** `payouts:read`</Info>

## Headers

<ParamField header="Authorization" type="string" required>
  API key.
</ParamField>

## Query parameters

<ParamField query="limit" type="integer">
  Maximum number of results (default: 1000)
</ParamField>

<ParamField query="offset" type="integer">
  Number of results to skip (default: 0)
</ParamField>

## Response

<ResponseExample>
  ```json theme={null}
  [
    {
      "id": "pay_abc123",
      "transactionType": "payout",
      "payoutAmount": 4425.00,
      "sourceCurrency": "USD",
      "payoutCurrency": "MYR",
      "status": "completed",
      "recipientId": "rec_xyz",
      "paymentMethod": "fiat_bank_transfer",
      "createdAt": "2026-03-01T10:00:00Z",
      "completedAt": "2026-03-01T10:05:00Z"
    }
  ]
  ```
</ResponseExample>
