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

# Pagination (coming soon)

> Shared pagination conventions for Connect read routes

<Warning>
  **Not yet implemented.** Pagination conventions are planned for **MS7 (PLAT-42)**. Connect read routes are not live until that milestone ships.
</Warning>

Connect list/read endpoints will use **cursor-based pagination**:

| Query param | Purpose                                                       |
| ----------- | ------------------------------------------------------------- |
| `cursor`    | Opaque token from the previous response's pagination metadata |
| `limit`     | Page size (default and maximum TBD)                           |

Responses will include pagination fields in the Connect envelope alongside `data` and `meta`.

Gather list endpoints today use **page / pageSize** query params on `/qsi/gather/*` — see individual [Gather API reference](/api-reference/candidates) pages.

## Related

* [Connect reads](/connect/reads)
* [Gather candidates API](/api-reference/candidates) — page / pageSize pagination today
