Skip to main content

Pagination

List endpoints support cursor-based pagination via page and limit query parameters.

Parameters

ParameterTypeDefaultMaxDescription
pageinteger1Page number (1-based)
limitinteger20100Items per page

Response Meta

{
"data": [...],
"meta": {
"page": 1,
"limit": 20,
"total": 143,
"total_pages": 8
}
}

Example

# Fetch page 3, 50 items per page
curl "https://wioclinic.services/api/developer/v1/patients?page=3&limit=50" \
-H "Authorization: Developer wc_live_…:wcs_live_…"