Most list endpoints return a data array plus a pagination object. The standard pattern is page-based iteration with page and limit query parameters.
sort and order.{
"data": [...],
"pagination": {
"page": 1,
"limit": 25,
"total": 248,
"totalPages": 10,
"hasNext": true,
"hasPrev": false
}
}A few specialized endpoints may use a different pagination style, including cursor-based iteration. When they do, the endpoint-specific reference will document the exact parameters and response fields.