getFlightTransferInfo
Retrieve flight transfer details using departure and arrival airport codes (IATA format) and the departure date in YYYY-MM-DD format. Ideal for planning connected flights or identifying transfer options for specific travel dates.
Instructions
Get flight transfer info by departure city and arrival city and departure date. Date format: YYYY-MM-DD. IMPORTANT: For today's date, you MUST use getTodayDate tool instead of hardcoding any date. Airport codes should be IATA 3-letter codes.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
arrcity | Yes | Arrival airport IATA 3-letter code (e.g. SHA for Shanghai, LAX for Los Angeles) | |
depcity | Yes | Departure airport IATA 3-letter code (e.g. BJS for Beijing, CAN for Guangzhou) | |
depdate | 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 |