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

# Pagination

> Three styles, stated per endpoint.

* **Offset** (`/deals`, `/portfolio/companies`): responses carry `total`,
  `limit`, `offset`, `has_more`. Sweep with `offset += limit` until
  `has_more` is `false`.
* **Cursor** (`/network/contacts`): pass each response's `next_cursor`
  back as `?cursor=` until it is `null`. Stable under concurrent writes.
* **Whole-book** (`/funds/positions`, `/funds/cashflows`,
  `/funds/marks`): LP books are small; one call returns everything.

See [Recipes](/guides/recipes) for a complete warehouse-sync loop.
