Calculate flight time(s)

Calculate flight times

This endpoint facilitates a flight time calculation for a specific aircraft category and/or type between different airports, based on a Great Circle distance and track.

Note: Several aircraft categories, aircraft types, and segments may be included in a request payload.

Example

The below example show the request and response of the POST /flighttimes endpint for a Legacy 500, Super midsize jet, between Nice Cote D'Azur (LFMN) and Amsterdam Schiphol (EHAM).

{
  "segments" : [ {
    "startAirport" : {
      "icao" : "LFMN"
    },
    "endAirport" : {
      "icao" : "EHAM"
    },
    "dateTime" : {
      "date" : "2024-06-11",
      "time" : "10:00",
      "departure" : true,
      "local" : true
    },
    "paxCount" : "4",
    "paxSegment" : true
  } ],
  "requiredLift" : [ {
    "availabilityId" : { },
    "aircraftCategory" : "Super midsize jet",
    "aircraftType" : "Legacy 500"
  } ]
}
{
    "meta": {
        "errors": [],
        "warnings": [],
        "infos": []
    },
    "data": [
        {
            "lift": {
                "id": "acat-223",
                "aircraftCategory": "Super midsize jet"
            },
            "segments": [
                {
                    "startAirport": {
                        "id": "aport-3367",
                        "name": "NICE COTE D'AZUR",
                        "city": "NICE",
                        "country": {
                            "code": "FR",
                            "name": "France"
                        },
                        "icao": "LFMN",
                        "iata": "NCE"
                    },
                    "endAirport": {
                        "id": "aport-5013",
                        "name": "SCHIPHOL",
                        "city": "AMSTERDAM",
                        "country": {
                            "code": "NL",
                            "name": "Netherlands"
                        },
                        "icao": "EHAM",
                        "iata": "AMS"
                    },
                    "departureDateTime": {
                        "dateTimeUTC": "2024-06-11T08:00:00Z",
                        "dateTimeLocal": "2024-06-11T10:00:00+02:00",
                        "calculated": false
                    },
                    "arrivalDateTime": {
                        "dateTimeUTC": "2024-06-11T09:38:00Z",
                        "dateTimeLocal": "2024-06-11T11:38:00+02:00",
                        "calculated": true
                    },
                    "timeTBD": false,
                    "paxCount": 4,
                    "paxSegment": true,
                    "blockMinutes": 98,
                    "flightMinutes": 86,
                    "fuelMinutes": 0,
                    "distanceNM": 528,
                    "fuelStopCount": 0
                }
            ]
        },
        {
            "lift": {
                "id": "5EBF6C5B-5ECF-4C17-BC15-72B950A3E73D",
                "href": "https://sandbox.avinode.com/api/aircrafttypes/5EBF6C5B-5ECF-4C17-BC15-72B950A3E73D",
                "type": "aircrafttypes",
                "aircraftCategory": "Super midsize jet",
                "aircraftType": "Legacy 500",
                "aircraftSuperType": "Legacy 500"
            },
            "segments": [
                {
                    "startAirport": {
                        "id": "aport-3367",
                        "name": "NICE COTE D'AZUR",
                        "city": "NICE",
                        "country": {
                            "code": "FR",
                            "name": "France"
                        },
                        "icao": "LFMN",
                        "iata": "NCE"
                    },
                    "endAirport": {
                        "id": "aport-5013",
                        "name": "SCHIPHOL",
                        "city": "AMSTERDAM",
                        "country": {
                            "code": "NL",
                            "name": "Netherlands"
                        },
                        "icao": "EHAM",
                        "iata": "AMS"
                    },
                    "departureDateTime": {
                        "dateTimeUTC": "2024-06-11T08:00:00Z",
                        "dateTimeLocal": "2024-06-11T10:00:00+02:00",
                        "calculated": false
                    },
                    "arrivalDateTime": {
                        "dateTimeUTC": "2024-06-11T09:36:00Z",
                        "dateTimeLocal": "2024-06-11T11:36:00+02:00",
                        "calculated": true
                    },
                    "timeTBD": false,
                    "paxCount": 4,
                    "paxSegment": true,
                    "blockMinutes": 96,
                    "flightMinutes": 84,
                    "fuelMinutes": 0,
                    "distanceNM": 528,
                    "fuelStopCount": 0
                }
            ]
        }
    ]
}
Language
Authorization
Header
URL
Click Try It! to start a request and see the response here!