Developers

Pagination and filters

Cursor pagination, newest first.

List endpoints return objects newest first:

{
  "object": "list",
  "url": "/v1/orders",
  "has_more": true,
  "data": [ { "id": "ord_01J...", "object": "order" } ]
}
  • limit: 1 to 100, default 25.
  • starting_after: the id of the last object you received. Repeat while has_more is true.
curl "https://api.tixxy.nl/v1/orders?limit=100&starting_after=ord_01J..." \
  -H "Authorization: Bearer tixxy_live_..."

Filters

Most lists accept event (an evt_ id), updated_since and created_since (ISO 8601). Use updated_since to sync changes since your last run, or better, use webhooks.

Orders accept expand[]=tickets to include the tickets of each order.

On this page