StoreInspect list endpoints use cursor pagination.
Request the first page with limit, then pass next_cursor to fetch the next page.
Rules
- Cursor tokens are opaque. Do not parse them or build your own.
- If filters change, discard the previous cursor and start a new search.
- An empty
data array with no next_cursor means the result set is exhausted.
- Page-size caps are enforced by the API and documented in the OpenAPI schema.
- Cursors are tied to the original API key and query shape.
Keep the full request body stable between pages. Changing filters while reusing a cursor returns an invalid cursor error.