List Events
List events with cursor pagination, date-range filters, and optional expand
Returns a paginated list of events for your company, newest first. Supports Stripe-style range filters onDocumentation Index
Fetch the complete documentation index at: https://docs.flashquotes.com/llms.txt
Use this file to discover all available pages before exploring further.
service_start_time and created_at, equality filters on location_id and booking_id, cursor-based pagination, and inline expansion of related objects.
Pagination
List endpoints use cursor-based pagination — pass theid of the last event in the previous page as starting_after:
hasMore flag indicating whether further pages exist.
Date-range filters
service_start_time and created_at accept Stripe-style bracket-notation operators (gt, gte, lt, lte). Values must be full ISO 8601 datetimes with a timezone designator (Z or ±HH:MM):
2026-06-01 are rejected — include the time and offset. Multiple operators on the same field combine as a range.
Expanding related objects
expand[] accepts the same allow-list as the single-event endpoint, with one difference: every path must be prefixed with data. because the objects you’re expanding live inside the envelope’s data array.
data. prefix). Unknown, malformed, or un-prefixed paths return 400.
Sort order
Results are always returned sorted bycreatedAt desc. Sort order is not configurable.Authorizations
API key for authentication
Query Parameters
Page size. Default 10, maximum 100.
1 <= x <= 100Cursor — the id of the last event from the previous page.
Events whose service_start_time is strictly after this ISO 8601 datetime (must include timezone, e.g. 2026-06-01T00:00:00Z).
Events whose service_start_time is at or after this ISO 8601 datetime.
Events whose service_start_time is strictly before this ISO 8601 datetime.
Events whose service_start_time is at or before this ISO 8601 datetime.
Events created strictly after this ISO 8601 datetime.
Events created at or after this ISO 8601 datetime.
Events created strictly before this ISO 8601 datetime.
Events created at or before this ISO 8601 datetime.
Filter to events at this location.
Filter to events on this booking.
Inline related objects. On list endpoints each path must be prefixed with data. (e.g. data.booking.lead). Allow-listed paths: data.location, data.services, data.staff, data.addons, data.resources, data.booking, data.booking.lead, data.booking.eventType, data.booking.invoices. Max 20 paths, max depth 4.

