nextCursor. Pass the cursor back to get the next page; when it comes back null, you’ve reached the end.
limit items (max 200, the default is smaller); a null or absent nextCursor means there’s nothing after this page.
With the SDKs
A paginated method returns an iterator. In the common case, justfor await over it — it follows the cursor for you, one page at a time, lazily:
With the CLI
List commands print the first page and, if there’s more, hint how to continue.| Flag | Effect |
|---|---|
--all | Follow the cursor and print every page. |
--cursor <token> | Resume from a specific nextCursor. |
--limit <n> | Items per page, 1–200. |
Not everything paginates
Small, human-managed sets — an endpoint’s provider secrets, an org’s replay destinations, delivery subscriptions, and agent triggers — return the whole collection at once, with no cursor and nolimit. We don’t advertise pagination a surface doesn’t implement. If a list carries a nextCursor, it pages; if it doesn’t, it’s complete.
For working through an endpoint’s history, see inspect and search events.