Go to App

Pagination

List endpoints support pagination using page and limit query parameters.

Parameters

ParameterTypeDefaultDescription
pageinteger1Page number (1-indexed)
limitinteger10-30Items 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.