The list endpoints — products, orders, and customers — return results one page at a time, so things stay fast even when there’s a lot of data. You control the page with a few query parameters:Documentation Index
Fetch the complete documentation index at: https://sentralbee.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
| Parameter | Default | What it does |
|---|---|---|
page | 1 | Which page to fetch (starts at 1). |
limit | 20 | How many items per page (1–100). |
sort_by | createdAt | The field to sort by. |
sort_order | desc | asc for oldest first, desc for newest first. |
400 bad_request.
What comes back
Along with the items, each response tells you where you are in the list:has_next_page: keep fetching the next page while it’s true, and
stop once it’s false.