search_travel_options
Search for flight and trip options between two airports. Get route details and booking links.
Instructions
Primary travel search workflow for one origin-destination airport pair. Use when the user wants flight/trip options for a specific route; use compare_routes for multiple routes, build_booking_link only when route details are already known, and get_airport_info only to validate one airport. Read-only, no authentication, no booking side effects. return_date is optional; omit it for one-way trips. Responses include route metadata and may include commission-eligible external booking links.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| origin | Yes | Origin airport IATA code (e.g. 'LAX', 'JFK'). Case-insensitive. | |
| destination | Yes | Destination airport IATA code (e.g. 'LHR', 'NRT'). Case-insensitive. | |
| departure_date | No | Departure date in YYYY-MM-DD format. Optional — omit for open date searches. | |
| return_date | No | Return date in YYYY-MM-DD format. Omit for one-way trips. | |
| currency | No | ISO 4217 currency code (default: USD). Used in booking link parameters. |