Pagination
Large collections use bounded database pagination.
Query
?page=1&limit=50- Default collection limit: 50.
- Maximum collection limit: 100.
- Search defaults to 20 and allows at most 50.
- Invalid page or limit values return HTTP 422.
Collection envelope
{
"success": true,
"data": [
{
"id": 121,
"name": "Example Show"
}
],
"meta": {
"page": 1,
"limit": 50,
"total": 1,
"pages": 1
},
"error": null
}