Some endpoints utilize pagination. To retrieve a specific page number, simply add ?page=PAGE_NUMBER
to the query string of the request. The response for paginated endpoints is also slightly different.
Key | Type | Description |
---|---|---|
count | Integer | The total number of objects retrievable by the endpoint |
next | String | The URL that can be requested for the next page |
previous | String | The URL that can be requested for the previous page |
results | Array | An array of objects containing the results of the request |