I’m trying to build an application that retrieves the ETA for enroute flights for a specific airport and airline. The only way I’ve found so far is to use the Search method to select the airline, destination and inAir options and then loop through the results, querying FlightInfo for each flight returned by Search, to get the ETA.
I have two concerns with this; 1) That’s going to 4 or 5 queries for each request which could be expensive and 2) it appears that FlightXML3 will not have the Search method.
Is there a better way to achieve the results I’m looking for?
TIA,
Bruce