Question about FlightInfoEx

  1. 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)?

  2. For the FlightInfoEx API, how can I know if the status of flight is Active (which mean it is on the way)?

  1. It’s probably best to use the 4 functions: Enroute, Scheduled, Departed, and Arrived and ignore the flights you do not care about.

  2. You should check whether actualdeparturetime != 0 and actualarrivaltime == 0 to see if it is currently enroute.