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

# Pagination

> How to page through list endpoints.

List endpoints return results in pages. Control pagination with two query
parameters:

| Parameter | Type    | Description                                           |
| --------- | ------- | ----------------------------------------------------- |
| `page`    | integer | 1-based page number. Must be a positive integer.      |
| `limit`   | integer | Number of items per page. Must be a positive integer. |

<Warning>
  `page` and `limit` must be strictly positive integers. Non-positive values are
  rejected with `400 Bad Request`.
</Warning>

## Example

```bash theme={null}
curl "https://app.malibou.com/api/public/v1/organizations/{organizationId}/collaborators?page=1&limit=50" \
  -H "Authorization: Bearer $API_KEY"
```

Iterate by incrementing `page` until a page returns fewer items than `limit`.
