Documentation Index
Fetch the complete documentation index at: https://docs.flashquotes.com/llms.txt
Use this file to discover all available pages before exploring further.
Welcome to the Flashquotes API
The Flashquotes API enables you to programmatically access and manage your events, bookings, forms, invoices, and tasks. Our REST API provides endpoints for retrieving event data, creating tasks, managing form responses, and accessing invoice information.Authentication
All API endpoints require authentication using an API key. You must include your API key in the request headers:Keep your API key secure and never share it publicly. If you’re subscribed to
the Pro plan, access your API key in the Integrations
Settings.
Base URL
All API requests should be made to:Available Endpoints
Our API provides several endpoint groups:Event Endpoints
Manage events, retrieve event details, and list events within date ranges
Task Endpoints
Create and manage tasks on events programmatically
Form Response Endpoints
Access form submission data and response details
Invoice Endpoints
Retrieve invoice information and payment details
Response Format
All responses are returned in JSON format. Successful responses will have a 2xx status code, while errors will return appropriate 4xx or 5xx status codes with error details.Conventions
The current public API follows Stripe-style conventions:-
snake_casequery parameters,camelCaseresponse keys. -
Every returned object carries an
objectdiscriminator (e.g."object": "event") at the top of its JSON. -
List endpoints return a standard envelope:
-
Default responses include only an object’s own scalar fields plus the foreign-key ids for its relations. Related objects are inlined only when explicitly requested via
expand[].
Expanding related objects
By default, an endpoint returns the object’s own scalar fields plus foreign-key ids (e.g. an event includesbookingId, locationId, eventBriefId, but not the booking or location objects themselves). To inline a related object, pass its path in expand[]:
booking.lead reads “expand the booking, then expand the lead inside that booking.” Each path segment must be an allow-listed relation on its parent — unknown paths return 400.
expand[]=booking.lead includes booking in the response even if you don’t list booking separately.
Multiple paths. Repeat expand[] to combine paths. Comma-separated values are also accepted: ?expand[]=location,services.
data. prefix on list endpoints
On list endpoints, each path must be prefixed with data. because the objects you’re expanding live inside the envelope’s data array, not at the top level:
data. prefix returns 400 with an invalid_request_error describing the offending path.
Limits
- Maximum 20 paths per request (duplicates are deduplicated, so
?expand[]=booking&expand[]=bookingcounts once). - Maximum nesting depth of 4 segments. On list endpoints, the
data.prefix doesn’t count against the depth —data.a.b.c.dis allowed. - Paths must use only allow-listed relation names; the allowed paths are documented on each endpoint.
Pagination
List endpoints use cursor-based pagination:limit— page size (default10, maximum100).starting_after— theidof the last item from the previous page.
hasMore flag indicates whether more pages are available.
Date-range filters
Date fields on list endpoints accept Stripe-style bracket-notation operators:[gt], [gte], [lt], [lte]. Values must be full ISO 8601 datetimes including a timezone designator (e.g. 2026-06-01T00:00:00Z or 2026-06-01T00:00:00-05:00).
Error envelope
Errors return a structured envelope:type field is one of api_error, invalid_request_error, authentication_error, permission_error, rate_limit_error, or idempotency_error. The code field is a machine-readable identifier and param (when present) names the offending parameter.
Need Help?
If you need assistance or have questions about the API:- Email us at support@flashquotes.com
- Check our documentation for examples and guides
- Contact your account manager for enterprise support

