Pagination
How to navigate through large result sets.
Pagination Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
page |
integer | 1 | Page number (starts at 1) |
per_page |
integer | 25 | Number of results per page (max 100) |
Example
GET /api/v1/events?page=2&per_page=25
Paginated Response
{
"data": [...],
"meta": {
"current_page": 2,
"per_page": 25,
"total": 150,
"total_pages": 6
}
}