# Pagination

List endpoints use the standard DRF pagination envelope:

```
{
  "count": 3,
  "next": "https://example.com/?page=2",
  "previous": null,
  "results": [...]
}
```
