Auto-fetch all pages
Thelist() method automatically fetches all pages and returns a flat array:
hasNext is false.
Manual page control
UselistPage() when you need control over pagination:
Page type
Iterate through all pages manually
Cursor pagination
Check results use cursor-based pagination for efficient streaming through large result sets:CursorPage type
Iterate with cursor
Which endpoints use which pagination
| Method | Pagination type | Default size |
|---|---|---|
*.list() | Offset (auto-fetches all) | 200 per page |
*.listPage(page, size) | Offset (manual) | — |
monitors.results(id, options) | Cursor | — |
monitors.versions(id, options) | Offset | 20 |
Next steps
Client reference
Full method reference for all namespaces.
Pagination patterns
REST API pagination patterns.