GET /api/v1/companies and GET /api/v1/offerings —
support pagination via two query parameters:
Neither parameter has a spec-defined default or maximum value — if you omit
limit or offset, or need to know the effective bounds the server applies,
confirm the current server-side behavior directly with Augment; it is not
part of the published contract.
Response shape
Every paginated response includes apage_info object alongside the list of
results:
Worked example
Request the second page of 25 companies:has_next: true means requesting offset=50 with the same limit returns
another page. Keep incrementing offset by limit until has_next is
false.