AirlineFlightSchedules V3 - Many Arrival Flight Missing

Hello,

Here attached screenshot of www.flightstats.com. I have crossed check data of arrivals and many arrival flight missing which highlighted yellow in screenshot. All flights which “Operated By” are missing in AirlineFlightSchedules V3 in response.

Attached screenshot of dated 08/11/19 Time 12:00 PM to 01:00 PM.

Please help to fetch that flights data.

Thanks

Hello, these operation agreements are handled like codeshares on the XML output where the operational carrier will be in the “actual_ident” field and the ticketing carrier in the “ident” field. Checking these specific flights, they all appear to be represented.

Here’s how AA 4650 appears (searched directly for brevity):
http://flightxml.flightaware.com/json/FlightXML3/AirlineFlightSchedules?start_date=1573171200&end_date=1573257600&airline=AAL&flightno=4650

{
"AirlineFlightSchedulesResult": {
    "next_offset": -1,
    "flights": [
        {
            "ident": "AAL4650",
            "fa_ident": "RPA4650-1573054440-schedule-0000",
            "actual_ident": "RPA4650",
            "departuretime": 1573227240,
            "arrivaltime": 1573235340,
            "origin": "KBNA",
            "destination": "KLGA",
            "aircrafttype": "E75L",
            "meal_service": "Business: Refreshments / Economy: Refreshments, Food for sale",
            "seats_cabin_first": 0,
            "seats_cabin_business": 12,
            "seats_cabin_coach": 64
        },
        {
            "ident": "AAL4650",
            "fa_ident": "RPA4650-1573041540-schedule-0000",
            "actual_ident": "RPA4650",
            "departuretime": 1573214340,
            "arrivaltime": 1573223880,
            "origin": "KLGA",
            "destination": "KBNA",
            "aircrafttype": "E75L",
            "meal_service": "Business: Refreshments / Economy: Refreshments, Food for sale",
            "seats_cabin_first": 0,
            "seats_cabin_business": 12,
            "seats_cabin_coach": 64
        }
    ]
}

}

Hello Dogrock,

Thank you for reply.

I need all arrivals (exclude codeshare flights) airport wise as per schedule day. So i have called below API for getting all arrivals airport wise.

http://flightxml.flightaware.com/json/FlightXML3/AirlineFlightSchedules?destination=LGA&start_date=xxxx&end_date=xxx&exclude_codeshare=true

Can above listed all flights data coming in exclude_codeshare ? If not then how i can differentiate that ?

Thanks

Setting the value exclude_codeshare=true will remove results like the example where there is both an ident and actual_ident value. A codeshare flight will contain a non-blank actual_ident value. It is possible that many indents will tie back to the same actual_ident for a given ident and departure time.