Overview
The Rntor API uses cursor-based pagination for endpoints that return lists of resources. This approach provides consistent results even when data is being modified.Pagination Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
limit | integer | 20 | Number of items per page (max: 100) |
cursor | string | - | Cursor for the next page of results |
Response Format
Paginated responses include apagination object:
Example
First Request
Subsequent Requests
Use thenext_cursor from the previous response:
Best Practices
Use Reasonable Limits
Request only what you need. Smaller page sizes mean faster responses.
Handle Empty Pages
Always check
has_more before requesting the next page.Store Cursors Carefully
Cursors are opaque strings. Don’t modify or parse them.
Avoid Offset Pagination
Cursor-based pagination is more reliable for large datasets.