> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: Pagination ## Article: Pagination ## Article Link: https://dev.wix.com/docs/api-reference/business-solutions/stores/pagination.md ## Article Content: # Pagination The standard Wix API pagination includes: **limit:** amount of items per response (defaults will be defined per use case) **offset:** number of items to skip The following example: ``` "query": { "paging": { "limit": 100, "offset": 20 } } ``` Should return items 21-120 in the collection. Wix Stores query endpoints are designed to handle a max of 10k data items. Therefore, if a user's store includes ~10k relevant items (e.g., products, inventory items), limit and offset may fail. Instead, filter by `numericId` and sort in ascending order: ``` "query": { "sort": [{"numericId": "asc"}], } ``` Then copy the last `numericId` sent in this call and call the endpoint again: ``` "query":{ "sort": [{"numericId": "asc"}], "filter": { "numericId": { "$gt": } } } ``` Continue until you receive an empty JSON as a response.

Important:
Escape the JSON strings in your query parameters.