For the complete documentation index, see llms.txt. This page is also available as Markdown.

Pagination

All paginated endpoints return a pagination object at the top level of the response alongside data.

Schema

Field
Type
Description

limit

integer

Number of items requested per page.

offset

integer

Number of items skipped from the start.

total

integer

Total number of items available.

hasMore

boolean

true if more items exist beyond the current page.

Example

{
  "pagination": {
    "limit": 100,
    "offset": 0,
    "total": 432,
    "hasMore": true
  }
}

Query Parameters

Paginated endpoints accept the following query parameters:

Param
Type
Default
Description

limit

integer

100

Max items to return. Capped at 500.

offset

integer

0

Number of items to skip.

Example Request

Last updated