I am using below mention parameters to get details of flight but more then one flights are showing so we need one flight info which is accurate
I am using AirlineFlightSchedules API
Parameters :-
'startDate' => '1536362160',
'endDate' =>'1536391500',
'airline' => 'UA',
'flightno' => '1882'
Flights Details ![]()
{
“AirlineFlightSchedulesResult”: {
“next_offset”: -1,
“data”: [{
“ident”: “ANZ9518”,
“actual_ident”: “UAL1882”,
“departuretime”: 1536387360,
“arrivaltime”: 1536405900,
“origin”: “KLAX”,
“destination”: “KEWR”,
“aircrafttype”: “B752”,
“meal_service”: “Business: Snack or brunch / Economy: Snack or brunch”,
“seats_cabin_first”: 0,
“seats_cabin_business”: 28,
“seats_cabin_coach”: 114
}, {
“ident”: “UAL1882”,
“actual_ident”: “”,
“departuretime”: 1536387360,
“arrivaltime”: 1536405900,
“origin”: “KLAX”,
“destination”: “KEWR”,
“aircrafttype”: “B752”,
“meal_service”: “Business: Snack or brunch / Economy: Food for sale”,
“seats_cabin_first”: 0,
“seats_cabin_business”: 28,
“seats_cabin_coach”: 114
}]
}
}
How can i get correct details
is any one know about.

