-
Is there any API that I can get the All arrival flight information including flight number, Airline, arrive time, and Status (landed, departed, scheduled) in a specific airport within specific time slot (e.g 0800 - 1200)?
-
For the FlightInfoEx API, how can I know if the status of flight is Active (which mean it is on the way)?
-
It’s probably best to use the 4 functions: Enroute, Scheduled, Departed, and Arrived and ignore the flights you do not care about.
-
You should check whether actualdeparturetime != 0 and actualarrivaltime == 0 to see if it is currently enroute.