Global Flight Tracker API. Every Country. Every Continent.

Great Applications Are Built On Great Data

Our comprehensive Flight Tracker API allows you to integrate and  display live flight tracking data on your website or application.

Flight tracker and status API map

Data included in the Flight Tracker API

  • Geography: Location information such as latitude, longitude, altitude and direction.
  • Speed: Vertical and horizontal speed of aircraft.
  • Airline: IATA code and ICAO code of airline.

    System information: Squawk, status and last updated.

  • Departure and arrival: IATA codes and ICAO codes of the departure and arrival location.
  • System information: Squawk, status and last updated.
  • Aircraft and flight: IATA and ICAO number of flight and registration number, ICAO code and ICAO24 code of aircraft.

Sources and Process

The data of the Flight Tracker API is collected through ADS-B systems as well as the use of flight schedules to anticipate the location and fill in the gaps where needed.

The data is live, the updates happen within short intervals of just a few minutes

We also receive data from our aviation partners and combine all this to the central system for our clients. 

Aviation Edge’s function is to gather and maintain the complete aviation data for our clients so that they can create the functional tools for their customers.

Aviation Edge API for Developers

Our database is divided between static and dynamic data. Static data is that what does not frequently change but due to the massive size of our database, there are constant updates. Think about airport and airline information. 

The dynamic data is that what changes more frequently or uses our software to turn it into useful tools. Think about flight tracking API and airport schedules API. It’s a REST API so depending on the development language you use, you can find the suitable method to develop it.

Flight tracker and status API map

Request

For information about all flights in the world

GET http://aviation-edge.com/v2/public/flights?key=[API_KEY]&limit=30000

For information about a specific flight based on: Flight IATA Number:

GET http://aviation-edge.com/v2/public/flights?key=[API_KEY]&flightIata=W8519

For information about a specific flight based on: Airlines:

GET http://aviation-edge.com/v2/public/flights?key=[API_KEY]&airlineIata=W8

Departure location:

GET http://aviation-edge.com/v2/public/flights?key=[API_KEY]&depIata=MAD

Arrival location:

GET http://aviation-edge.com/v2/public/flights?key=[API_KEY]&arrIata=GIG

Flights within a circle area based on lat and lng values and radius as the distance:

GET https://aviation-edge.com/v2/public/flights?key=[API_KEY]&lat=51.5074&lng=0.1278&distance=100&arrIata=LHR

Combinations: two airports and a specific airline flying between them:

GET http://aviation-edge.com/v2/public/flights?key=[API_KEY]&depIata=ATL&arrIata=ORD&airlineIata=UA

Response

Track status of individual flights
Track flights of complete airlines
Track flight status based on departure airport
Track arriving flight status
[{“type”:”arrival”,
“status”:”landed”,
“departure”:{“iata_code”:”DUB”,
“icao_code”:”EIDW”,
“terminal”:”1″,
“gate”:”117″,
“delay”:3,
“scheduled_time”:”2020-07-18T06:30:00.000″,
“estimated_time”:”2020-07-18T06:30:00.000″,
“actual_time”:”2020-07-18T06:32:00.000″,
“estimated_runway”:”2020-07-18T06:32:00.000″,
“actual_runway”:”2020-07-18T06:32:00.000″},
“arrival”:{“iata_code”:”LGW”,
“icao_code”:”EGKK”,
“terminal”:”N”,
“scheduled_time”:”2020-07-18T08:10:00.000″,
“estimated_time”:”2020-07-18T07:26:00.000″,
“actual_time”:”2020-07-18T07:27:00.000″,
“estimated_runway”:”2020-07-18T07:27:00.000″,
“actual_runway”:”2020-07-18T07:27:00.000″},
“airline”:
{“name”:”Ryanair”,
“iata_code”:”FR”,
“icao_code”:”RYR”},
“flight”:
{“number”:”120″,
“iata_number”:”FR120″,
“icao_number”:”RYR120″}
}]