Skip to main content

Pagination conventions

Many list endpoints return a shared pagination envelope.

Common fields

  • page — current page number
  • pageSize — number of items requested per page
  • total — total matching items
  • totalPages — total number of pages
  • hasMore — whether another page is available

What to expect

  • Exact item fields vary by endpoint family.
  • Some endpoints return extra route-specific metadata in addition to the shared pagination fields.
  • Identifiers such as event_id, exhibitor_id, and personnel_id are string values in the public contract.
  • Parameter naming is route-specific. Treat each endpoint page as the source of truth for casing and field names.

Notes

Use each endpoint page as the source of truth for route-specific filters, item fields, and any additional metadata returned with paginated results.