Find Cheapest Flights To Destination
find_cheapest_flights_toWhen the user hasn't said where they're flying from, compare the cheapest fare to a destination from every origin airport with cached data. Prices are cached fares in AUD from I Want That Flight (I Know The Pilot's sister flight-search site) - refreshed regularly and indicative, not live availability. Always present the travel dates alongside prices. Use this for 'cheapest flights to Bali next month' queries; use get_cheapest_flight_dates when the origin is known.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| round_trip | No | True for return fares (default), false for one-way | |
| cabin_class | No | Cabin class | economy |
| destination | Yes | Destination airport code, city name, or country name (e.g. 'DPS', 'Bali', 'Japan') | |
| depart_date_to | Yes | End of the departure window (YYYY-MM-DD) | |
| depart_date_from | Yes | Start of the departure window (YYYY-MM-DD) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| total | No | Number of results returned | |
| origin | No | Origin airport code (present when an origin was specified) | |
| message | No | Optional message about the results | |
| results | No | ||
| currency | No | Currency code (always AUD) | |
| destination_airports | No | Airport codes the destination resolved to |