The FlightXML2:AirlineFlightInfoStruct contains fields for the origin and destination gates (gate_orig and gate_dest), however I’ve noticed that those fields are consistently empty. Is this data only available for certain flights?
I’ve been issuing requests for the following endpoint: flightxml.flightaware.com/json/F … FlightInfo
Example request: flightxml.flightaware.com/json/F … rline-0178
Example response:
{
"AirlineFlightInfoResult": {
"faFlightID": "TAP374-1446100068-airline-0178",
"ident": "TAP374",
"codeshares": ],
"tailnumber": "CSTNP",
"meal_service": "Business: Dinner / Economy: Meal",
"gate_orig": "",
"gate_dest": "",
"terminal_orig": "1",
"terminal_dest": "2",
"bag_claim": "",
"seats_cabin_first": 0,
"seats_cabin_business": 24,
"seats_cabin_coach": 131
}
}
Thank you!