Pagination
List endpoints support pagination using page and limit query parameters.
Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
page | integer | 1 | Page number (1-indexed) |
limit | integer | 10-30 | Items per page (max 30) |
Example
bash
curl "https://exportcomments.com/api/v3/jobs?page=2&limit=10" \-H "X-AUTH-TOKEN: your-api-key"
The response returns an array of items. Iterate through pages until you receive fewer items than the limit value.