tool_find_cheapest_month
Find the cheapest month to fly between two airports by comparing monthly prices across a future range. Uses first Tuesday sampling and season analysis to rank months.
Instructions
PRICE timing (month-level): cheapest MONTH to fly across the next N months.
Samples the first Tuesday of each month, ranks months by price with season analysis. For cheapest DAY within one month use fare_calendar; for best weather use best_month_to_visit.
Args: origin: Origin airport IATA code (e.g., "JFK") destination: Destination airport IATA code (e.g., "BCN") months_ahead: Future months to scan (1-12, default 12) adults: Number of passengers cabin_class: economy | premium_economy | business | first currency: Currency code trip_length_days: Days for round-trip return leg (departure + N) trip_type: round_trip | one_way
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| origin | Yes | ||
| destination | Yes | ||
| months_ahead | No | ||
| adults | No | ||
| cabin_class | No | economy | |
| currency | No | USD | |
| trip_length_days | No | ||
| trip_type | No | round_trip |