StoreInspect list endpoints use cursor pagination.
Request the first page with limit, then pass next_cursor to fetch the next page.
{
"limit": 25,
"cursor": "cur_Q29x7nK8uP4sVb2mL9rTe6Yh3DcWzAaF5gJ1kNpX0qRu"
}
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.