Example
page until a page returns fewer items than limit.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
How to page through list endpoints.
| 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. |
page and limit must be strictly positive integers. Non-positive values are
rejected with 400 Bad Request.curl "https://app.malibou.com/api/public/v1/organizations/{organizationId}/collaborators?page=1&limit=50" \
-H "Authorization: Bearer $API_KEY"
page until a page returns fewer items than limit.