Pagination

List endpoints return a paginated response with the following shape:

{
  "data": [ ... ],
  "links": {
    "first": "...",
    "last": "...",
    "prev": null,
    "next": "..."
  },
  "meta": {
    "current_page": 1,
    "per_page": 25,
    "total": 137
  }
}

Use the count query parameter to control page size, and the next link to page forward.