getAirportFlights
Query all flights within 30km of a specified airport using airport codes like PEK, PVG, or CAN to monitor departures and arrivals in real-time.
Instructions
机场周边航班查询 - 查询指定机场周边30公里范围内的所有航班。支持主要机场代码如PEK、PVG、CAN等
Input Schema
Name | Required | Description | Default |
---|---|---|---|
airport_code | Yes | ||
flight_type | No | departure |
Input Schema (JSON Schema)
{
"properties": {
"airport_code": {
"title": "Airport Code",
"type": "string"
},
"flight_type": {
"default": "departure",
"title": "Flight Type",
"type": "string"
}
},
"required": [
"airport_code"
],
"type": "object"
}