searchFlightsByNumber
Search flight details by entering the flight number, date, and optional departure/arrival airport codes. Use IATA 3-letter codes for airports and ensure the date format is YYYY-MM-DD.
Instructions
Search flights by flight number and date. Flight number should include airline code (e.g. MU2157, CZ3969). dep and arr are optional, keep empty if you don't know them. Date format: YYYY-MM-DD. IMPORTANT: For today's date, you MUST use getTodayDate tool instead of hardcoding any date. Airport codes (optional) should be IATA 3-letter codes.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
arr | No | Arrival airport IATA 3-letter code (e.g. CAN for Guangzhou) | |
date | Yes | Flight date in YYYY-MM-DD format. IMPORTANT: If user input only cotains month and date, you should use getTodayDate tool to get the year. For today's date, use getTodayDate tool instead of hardcoding | |
dep | No | Departure airport IATA 3-letter code (e.g. HFE for Hefei) | |
fnum | Yes | Flight number including airline code (e.g. MU2157, CZ3969) |