All list endpoints paginate. Defaults are usually 25 per page; you can request up to 100.
Query parameters
?page=N- which page (1-indexed)?per_page=N- page size, max 100
Response envelope
{
"status": "ok",
"data": [...],
"pagination": {
"page": 1,
"per_page": 25,
"total": 137,
"total_pages": 6
}
}
Iterate cleanly
Loop while page <= total_pages. Don't try to guess total_pages up front - it can change as the data grows during iteration.