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

# List Payins

> Returns payins as a list nested in data, with pagination metadata.

### Query Params

<ParamField query="page" type="number">
  Page number (default 1).
</ParamField>

<ParamField query="pageSize" type="number">
  Page size (default 20, max 100).
</ParamField>

<ParamField query="startDate" type="string">
  Inclusive lower bound on `createdAt` (ISO 8601). Optional.
</ParamField>

<ParamField query="endDate" type="string">
  Inclusive upper bound on `createdAt` (ISO 8601). Optional.
</ParamField>

<Note>
  `endDate` is a timestamp, not a calendar day: `2024-01-31` resolves to `2024-01-31T00:00:00Z` and excludes that day — to include the full day, pass `2024-01-31T23:59:59Z`. When both dates are provided, `startDate` must be before or equal to `endDate`, otherwise the API responds with `400 Bad Request`.
</Note>

### Response

<ResponseExample>
  ```json 200 theme={null}
  {
    "data": [],
    "meta": { "page": 1, "pageSize": 20, "total": 0, "totalPages": 1 }
  }
  ```
</ResponseExample>
