Page through collections with offset or cursor pagination.
Collection endpoints return a page of results plus a pagination object describing how to fetch the next one. The Cura API uses two pagination styles depending on the endpoint.
The portfolio list uses offset pagination. Pass limit (1–100, default 50) and offset (default 0). The response reports hasMore, derived without a separate count query, so you keep paging while it is true.
Feed endpoints use a time-based cursor, since entries are ordered newest first and new entries arrive continuously. Pass limit (1–50, default 20). Each response returns nextCursor; pass it back as cursor to fetch the next, older page. When there are no more entries, nextCursor is null.