# Certn API Documentation - Pagination

> Source: https://centric-api-docs.certn.co/#pagination
> Interactive docs: https://centric-api-docs.certn.co/#pagination

## Pagination

List endpoints return paginated results. The response includes pagination metadata:

```json
{
  "pagination": {
    "result_count": 150,
    "page_count": 15,
    "page_size": 10,
    "current_page": 1,
    "next_page": 2,
    "previous_page": null
  },
  "results": [...]
}
```

### Query Parameters

| Parameter | Default | Description |
|-----------|---------|-------------|
| `page` | 1 | Page number to retrieve |
| `page_size` | 10 | Results per page (max 100) |

---

## Additional Resources

- [Interactive Documentation](https://centric-api-docs.certn.co)
- [OpenAPI Specification](https://centric-api-docs.certn.co/openapi.yaml)
- [All Reference Docs](https://centric-api-docs.certn.co/reference/)

*Generated from Certn API Documentation*