Skip to main content
OrgX Public Preview list endpoints use offset pagination where available.

Request Parameters

ParameterTypeDefaultDescription
limitintegerendpoint-specificMaximum number of items to return.
offsetinteger0Number of items to skip.
Example:
curl "https://useorgx.com/api/client/live/initiatives?limit=20&offset=0" \
  -H "Authorization: Bearer $ORGX_API_KEY"

Response Fields

List endpoints that support pagination return:
{
  "initiatives": [],
  "total": 0,
  "pagination": {
    "limit": 20,
    "offset": 0,
    "has_more": false
  }
}
FieldDescription
totalTotal matching items when available.
pagination.limitNumber of items requested.
pagination.offsetCurrent offset.
pagination.has_moreWhether another page is likely available.

Fetching the Next Page

When has_more is true, request the next page by adding limit to offset.
next_offset = pagination.offset + pagination.limit

Client Guidance

  • Keep page sizes small for live surfaces.
  • Do not assume every endpoint returns total.
  • Preserve ordering between requests by keeping the same filters and sort.
  • Prefer MCP tools for model-facing exploration when pagination details are not important to the end user.