Flight Feeds
API Call
Get Flight Data: GET
/api/v2/flightdata
Parameters:
Name | Type | Description | Example |
---|---|---|---|
direction | string | (required) Direction of flight. It is either Arrival or Departure | arrival |
airportCode | string | (required) Airport IATA code | NBO |
flightCode | string | (required) Flight IATA code | QR8776 |
key | string | (required) Key provided by goracle. When using node runner set the key as ##signKey | ##signKey |
Example Call
http://flight-feeds.goracle.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
Name | Type | Description |
---|---|---|
flight_status | string | The status of the flight: e.g delayed, on-time, scheduled, active |
scheduled_time | string | The scheduled departure or arrival time. |
estimated_time | string | The estimate time or arrival or departure |
actual_time | string | The actual time the flight departed or arrived |
delay | number | Departure or arrival time delay in minutes |
airline_name | string | The name of the flight airline. |
flight_number | string | The flight number |
flight_code | string | The flight AITA code |
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.
Last modified 2mo ago