Skip to main content

Pagination

Parameters

ParameterTypeDefaultMax
pageinteger (1-indexed)1
page_sizeinteger201000

Both parameters are optional. Omitting them returns the first 20 results. Values above 1 000 for page_size are silently clamped to 1 000.

Paging Through Results

Use count from the response envelope to determine how many pages exist, then increment page until you have all records.

# Page 1
curl "https://staging.api.cms.itqan.dev/reciters/?page=1&page_size=10"

# Page 2
curl "https://staging.api.cms.itqan.dev/reciters/?page=2&page_size=10"

See also: Response Structure · Searching, Filtering, Ordering · Error Handling