Skip to main content
All list endpoints return paginated results using cursor-based pagination. This provides stable, consistent paging even when records are created or deleted between requests.

Query Parameters

Response Shape

Every list endpoint returns a data array and a _meta object:

Paging Forward

Pass the next cursor from the previous response to fetch the next page:
Continue until _meta.next is null.

Paging Backward

Pass the prev cursor to go back one page:

Sort Order

Results are sorted by creation date descending (newest first). This order is fixed and cannot be changed via query parameters.

Cursor Format

Cursors are opaque strings. Do not parse, construct, or store them long-term. They encode an internal position and may change format between API versions. Always use the cursor values returned in _meta.

Notes

  • The maximum limit is 100. Values above 100 are clamped.
  • The minimum limit is 1.
  • An invalid or expired cursor returns a 400 Bad Request error.