Hello,
I’m attempting to query all completed flights for a particular day. I’ve been doing some spot-checking and it doesn’t seem like the GET /flights/search/advanced operation is getting me all flights for my test ident:
Operation: GET /flights/search/advanced
Parameters: {notnull arrivalTime} {match ident SKK16}
Results:
{
“flights”: [
{
“ident”: “SKK16”,
“ident_icao”: “SKK16”,
“ident_iata”: “KP16”,
“fa_flight_id”: “SKK16-1662914100-schedule-0478”,
“actual_off”: “2022-09-13T16:09:50Z”,
“actual_on”: “2022-09-13T17:15:43Z”,
“foresight_predictions_available”: false,
“predicted_out”: null,
“predicted_off”: null,
“predicted_on”: null,
“predicted_in”: null,
“predicted_out_source”: null,
“predicted_off_source”: null,
“predicted_on_source”: null,
“predicted_in_source”: null,
“origin”: {
“code”: “GABS”,
“code_icao”: “GABS”,
“code_iata”: “BKO”,
“code_lid”: null,
“airport_info_url”: “/airports/GABS”
},
“destination”: {
“code”: “GUCY”,
“code_icao”: “GUCY”,
“code_iata”: “CKY”,
“code_lid”: null,
“airport_info_url”: “/airports/GUCY”
},
“waypoints”: ,
“first_position_time”: “2022-09-13T16:05:20Z”,
“last_position”: {
“fa_flight_id”: “SKK16-1662914100-schedule-0478”,
“altitude”: 1,
“altitude_change”: “D”,
“groundspeed”: 9,
“heading”: 318,
“latitude”: 9.58434,
“longitude”: -13.60312,
“timestamp”: “2022-09-13T17:17:25Z”,
“update_type”: “A”
},
“bounding_box”: [
12.54277,
-13.62013,
9.57116,
-7.93595
],
“ident_prefix”: null,
“aircraft_type”: “737”
}
],
“links”: null,
“num_pages”: 1
}
When comparing to a manual search for this ident, it seems there’s a few completed flights for 09/13/2022. Is there a reason why it’s only returning the 1 result? Is there another operation I might be missing that would return all results for any ident for any given day?