tool_find_cheapest_month
Identify the cheapest month to fly to any destination by analyzing prices across upcoming months, with per-month price rankings and season analysis.
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 |
|---|---|---|---|
| adults | No | ||
| origin | Yes | ||
| currency | No | USD | |
| trip_type | No | round_trip | |
| cabin_class | No | economy | |
| destination | Yes | ||
| months_ahead | No | ||
| trip_length_days | No |