Basic paging
Usepage and per_page to navigate results:
| Parameter | Default | Range | Description |
|---|---|---|---|
page | 1 | 1-500 | Page number |
per_page | 25 | 1-100 | Results per page |
Cursor paging
Cursor paging lets you access any number of results: Step 1: Start withcursor=*
next_cursor from the response:
next_cursor for the next page:
next_cursor is null and results is empty.
Cursor paging also works with
group_by. To page through more than 200 groups, follow next_cursor exactly as shown above. Basic page-based paging (page=2, …) is not supported for grouped results — you must use cursor paging. See Group.