Developers
Quickstart
What is it
Quickstart takes you from credentials to a confirmed booking: get your keys, sign a request, quote a product and redeem the quote as a booking. The same flow works across every vertical.
How it works
Get your keys
API access is provisioned per agency. Apply and receive your key id and secret.
Sign a request
Build the HMAC-SHA256 signature over method, path, query, timestamp, nonce and body hash, and send it in the Authorization header.
Quote, then book
Request a quote, receive a signed quote_token, and redeem it with an Idempotency-Key to create the booking.
Quote → book
POST /v1/tickets/quote
{ "product_code": "…", "date": "2026-09-14", … }
→ { "data": { "quote_token": "qt_…" } }
POST /v1/bookings
Idempotency-Key: 7d3f-4a90
{ "quote_token": "qt_…", … }
→ { "data": { "reference": "bk_…", "status": "confirmed" } }Related pages
- AuthenticationHMAC-SHA256 signed requests
- ErrorsThe complete error catalogue
- SandboxTest keys and simulated inventory
Ready to integrate?
Tell us about your volume and verticals. We will get you sandbox keys.