Quickstart
Get started with the Travelese Engine API
Quickstart Guide
This guide will help you get started with the Travelese Engine API. We’ll walk through a complete flight booking flow, from searching for flights to managing orders and services.
Prerequisites
Before you begin, you’ll need:
- A Travelese API key (contact [email protected] to get one)
- Basic knowledge of REST APIs
- A tool to make HTTP requests (curl, Postman, etc.)
Authentication
All API requests require authentication using a Bearer token. Include your API key in the Authorization header:
Basic Flow
A typical flight booking flow consists of these steps:
- Search for flights
- Create an order
- Add services (optional)
- Manage the order
Let’s go through each step.
1. Search for Flights
First, search for available flights using the Shop Flights endpoint:
This will return a list of available flight offers. Note down the offerId
of your chosen flight.
2. Create an Order
Once you have an offer ID, create an order:
Save the orderId
from the response for the next steps.
3. Add Services (Optional)
You can add services like seat selection to your order:
- First, list available services:
- Then, add a service to your order:
4. Manage the Order
You can retrieve or cancel your order as needed:
- Retrieve order details:
- Cancel the order if necessary:
Error Handling
All endpoints return standardized error responses:
Common error codes include:
invalid_request
: Missing or invalid parametersinvalid_credentials
: Invalid API keynot_found
: Resource not foundprovider_error
: Error from the underlying provider
Next Steps
Now that you’re familiar with the basic flow, you can:
- Explore the complete API Reference
- Learn about Airlines and Airports
- Join our Discord community for support
Need Help?
If you have any questions or need assistance:
- Email: [email protected]
- Documentation Issues: GitHub Repository
- Status Page: status.travelese.ai
Was this page helpful?