Skip to main content
Every list endpoint returns one page at a time:
To get the next page, send the same request again with ?cursor= set to nextCursor. Stop when nextCursor is null.

Rules

  • limit is 1 to 200. The default is 50. Use 200 to make fewer requests.
  • Pass the cursor back unchanged. It is not a page number. Do not read it, build it or change it. Its format can change at any time.
  • Keep the same filters and limit. A cursor belongs to one query. If you change status or sectionId between pages, the pages you get are not reliable. To change a filter, start again without a cursor.
  • A cursor you changed gets 400. The message tells you to start again without one.
  • Spell parameters exactly. The API rejects a parameter it does not know with 400 invalid_request, so a typo fails loudly instead of being ignored.

A loop that reads every page