How it works
Pagination uses two query parameters:page
— zero‑based page index (use 0 for the first page)limit
— number of items to return on that page
page
: 0limit
: 25
page=0
because most programming contexts use zero-based indexing. This keeps the logic consistent with common programming conventions and makes the code easier to reason about on both our side and yours.
Upper bound:
limit
: 5000