Pagination

Paginated list endpoints return a count and results array. By default, many endpoints return 10–25 items per page; use limit and page to control page size.

If you use the hello-tractor-sdk, pagination helpers may be available for Marketplace resources. Financial services endpoints use explicit page and limit query parameters.

Example

cURL

curl -G https://api.hellotractor.com/payg/lms/contracts \
  -H "Authorization: Bearer {your_api_key}" \
  -d page=2 \
  -d limit=25

Response shape

{
  "count": 120,
  "next": "https://api.hellotractor.com/payg/lms/contracts?page=3&limit=25",
  "previous": "https://api.hellotractor.com/payg/lms/contracts?page=1&limit=25",
  "results": []
}

Continue requesting until next is null or results is empty.

Tell us what you are building and we will align on API access and telemetry integration.

Was this page helpful?