find_routes
Look up scheduled airline routes and days of operation between airports. Find which airlines fly a specific route and on which days.
Instructions
TRIGGER: use automatically whenever the user asks which airlines fly a route, whether a nonstop exists between two places, or on which days a route operates — without naming AirLabs. Look up the ROUTE timetable: which airlines operate a route and on which DAYS OF THE WEEK, with scheduled clock times (no live status). This is a planning/reference database, NOT real-time — use it for 'which airlines fly X to Y' and 'what days does this run', NOT for 'is it on time today'. USE CASES: 'Which airlines fly London to Tokyo?', 'What days does Wizz Air fly Sofia to London?', 'Does anyone fly nonstop A to B?'. INPUT: filter by dep_iata and/or arr_iata and/or airline_iata (resolve names to codes first). For 'soon/today with times', use get_airport_schedule instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max rows (up to 500; 50 for free keys). | |
| _fields | No | Comma-separated fields to return. | |
| arr_iata | No | Arrival airport IATA code, e.g. 'LTN'. | |
| arr_icao | No | Arrival airport ICAO code. | |
| dep_iata | No | Departure airport IATA code, e.g. 'SOF'. | |
| dep_icao | No | Departure airport ICAO code. | |
| flight_iata | No | Filter by flight IATA number. | |
| airline_iata | No | Filter by airline IATA code, e.g. 'W6'. | |
| airline_icao | No | Filter by airline ICAO code. |