AgentInvoiceAgentInvoice
API ReferenceGetting Started

Pagination

All list endpoints use **offset-based pagination** controlled by two query parameters:

All list endpoints use offset-based pagination controlled by two query parameters:

ParameterTypeDefaultMaxDescription
limitinteger100200Number of records to return
offsetinteger0Number of records to skip

Example

Fetch the second page of 20 clients:

GET /clients?limit=20&offset=20

Response shape

List endpoints return a JSON array directly (not wrapped in a data key):

[
  { "id": 1, "name": "Acme Corp", ... },
  { "id": 2, "name": "Globex", ... }
]

To determine whether more records exist, compare the count of returned items to your limit. If count < limit, you are on the last page.

On this page