Flight Feeds

API Call

Base Url: http://flight-feeds.gora.io

Get Flight Data: GET /api/v2/flightdata

Parameters:

Example Call

http://flight-feeds.gora.io/api/v2/flightdata?direction=arrival&airportCode=NBO&flightCode=EK719&key=##signKey

Example Response (JSON)

{
    "flight_status": "active",
    "scheduled_time": {
        "aviation-edge": "2023-06-27T00:50:00.000",
        "flight-labs": "2023-06-27T00:50:00.000"
    },
    "estimated_time": {
        "aviation-edge": "2023-06-27T01:00:00.000",
        "flight-labs": "2023-06-27T01:00:00.000"
    },
    "actual_time": {
        "aviation-edge": "2023-06-27T00:45:00.000",
        "flight-labs": "2023-06-27T00:45:00.000"
    },
    "delay": {
        "aviation-edge": 0,
        "flight-labs": 0
    },
    "airline_name": "Qatar Airways",
    "flight_number": "8776",
    "flight_code": "QR8776"
}

Results Schema

Note: API call only works with scheduled, active, or delayed flights. You can get the list of these flights filtered by the airport code using the link below.

https://www.flightstats.com/v2/flight-tracker/departures/NBOhttps://www.flightstats.com/v2/flight-tracker/arrivals/NBO

Last updated