The Most Powerful Airline API Available
Great Applications Are Built On Great Data
Our comprehensive Airline API allows you to integrate and
display routes, schedules, timetables, flight tracker data and more on your website or application.

827 users join us in the
last 30 days




Airline Data Access includes:

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 tracker 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.
You can find the examples of each endpoint below. The layout of the GET requests are as follows:
For an entire dataset, when available:https://aviation-edge.com/v2/public/[ENDPOINT]?key=[API KEY]
For specific string value information:https://aviation-edge.com/v2/public/[ENDPOINT]?key=[API KEY]&[STRING]=[VALUE]
Flight Tracker API
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
Response
[
{
"geography": {
"latitude": 43.5033,
"longitude": -79.1297,
"altitude": 7833.36,
"direction": 70
},
"speed": {
"horizontal": 833.4,
"isGround": 0,
"vertical": 0
},
"departure": {
"iataCode": "YHM",
"icaoCode": "CYHM"
},
"arrival": {
"iataCode": "YQM",
"icaoCode": "CYQM"
},
"aircraft": {
"icaoCode": "B763",
"regNumber": "CGYAJ",
"icao24": "C08412"
},
"airline": {
"iataCode": "W8",
"icaoCode": "CJT"
},
"flight": {
"iataNumber": "W8620",
"icaoNumber": "CJT620",
"number": "620"
},
"system": {
"updated": 1513148168,
"squawk": "0000"
},
"status": "en-route"
}
]
Schedules API
Request
For the departure timetable of a certain airport.
GET http://aviation-edge.com/v2/public/timetable?key=[API_KEY]&iataCode=JFK&type=departure
For the arrival timetable of a certain airport. Response
GET http://aviation-edge.com/v2/public/timetable?key=[API_KEY]&iataCode=JFK&type=arrival
Response
[
{
"type": "departure",
"status": "landed",
"departure": {
"iataCode": "JFK",
"icaoCode": "KJFK",
"scheduledTime": "2017-12-11T01:06:00.000",
"estimatedRunway": "2017-12-11T02:07:00.000",
"actualRunway": "2017-12-11T02:07:00.000" },
"arrival": {
"iataCode": "CVG",
"icaoCode": "KCVG",
"estimatedRunway": "2017-12-11T03:38:00.000",
"actualRunway": "2017-12-11T03:38:00.000"
},
"airline": {
"name": "Atlas Air",
"iataCode": "5Y",
"icaoCode": "GTI"
},
"flight": {
"number": "302",
"iataNumber": "5Y302",
"icaoNumber": "GTI302"
}
Etc.
]
Historical Schedules API
Request
For the departure schedule of a certain airport on a certain date.
GET http://aviation-edge.com/v2/public/flightsHistory?key=[API_KEY]&code=JFK&type=departure&date_from=YYYY-MM-DD
For the arrival schedule of a certain airport on a certain date.
GET http://aviation-edge.com/v2/public/flightsHistory?key=[API_KEY]&code=JFK&type=arrival&date_from=YYYY-MM-DD
For the schedule of a certain airport of a certain date range (also available for arrival).
GET http://aviation-edge.com/v2/public/flightsHistory?key=[API_KEY]&code=JFK&type=departure&date_from=YYYY-MM-DD&date_to=YYYY-MM-DD
For the schedule of a certain airport on a certain date (or range) but only flights with a certain status.
GET http://aviation-edge.com/v2/public/flightsHistory?key=[API_KEY]&code=JFK&type=arrival&date_from=YYYY-MM-DD&date_to=YYYY-MM-DD&status=cancelled
For tracking individual historical flights.
GET http://aviation-edge.com/v2/public/flightsHistory?key=[API_KEY]&code=JFK&type=departure&date_from=YYYY-MM-DD&date_to=YYYY-MM-DD&flight_number=[1234]
For filtering the flights of a certain airline from the arrival schedule of a certain airport on a certain date (also available for departure schedules and as a date range).
GET http://aviation-edge.com/v2/public/flightsHistory?key=[API_KEY]&code=JFK&type=arrival&date_from=YYYY-MM-DD&&airline_iata=TK
Status can be: "active" (for departure schedules only), "landed" (for arrival schedules only), "cancelled", "unknown"
Delay amount is included in minutes if a flight was delayed at the date.
The maximum date range can be 30 days.
The historical data starts from 14 May 2020.
Response
{
"type":"arrival",
"status":"cancelled",
"departure":{"iata_code":"MLA",
"icao_code":"LMML",
"scheduled_time":"2020-07-18T08:35:00.000"},
"arrival":
{"iata_code":"LGW",
"icao_code":"EGKK",
"terminal":"S",
"scheduled_time":"2020-07-18T10:55:00.000"},
"airline":
{"name":"Air Baltic",
"iata_code":"BT",
"icao_code":"BTI"},
"flight":
{"number":"6079",
"iata_number":"BT6079",
"icao_number":"BTI6079"},
"codeshared":
{"airline":
{"name":"Air Malta",
"iata_code":"KM",
"icao_code":"AMC"},
"flight":
{"number":"116",
"iata_number":"KM116",
"icao_number":"AMC116"}
}
}
,
Future Schedules API
Request
For the departure schedule of a certain airport on a certain future date.
GET http://aviation-edge.com/v2/public/flightsFuture?key=[API_KEY]&type=departure&iataCode=AGP&date=YYYY-MM-DD
For the arrival schedule of a certain airport on a certain future date.
GET http://aviation-edge.com/v2/public/flightsFuture?key=[API_KEY]&type=arrival&iataCode=AGP&date=YYYY-MM-DD
For the flights that are scheduled to arrive at a certain airport on a certain date (out of a departure schedule).
GET http://aviation-edge.com/v2/public/flightsFuture?key=[API_KEY]&type=departure&iataCode=AGP&arr_iataCode=ORY&date=YYYY-MM-DD
For the flights that are scheduled to depart from a certain airport on a certain date (out of an arrival schedule).
GET https://aviation-edge.com/v2/public/flightsFuture?key=[API_KEY]&type=arrival&iataCode=AGP&dep_iataCode=ory&date=YYYY-MM-DD
(The date must be at least 7 days ahead of the current date)
Response
[
{"weekday": "4",
"departure":
{"iataCode": "lax",
"icaoCode": "klax",
"terminal": "4",
"gate": "A",
"scheduledTime": "12:00"},
"arrival":
{"iataCode": "jfk",
"icaoCode": "kjfk",
"terminal": "8",
"gate": "B",
"scheduledTime": "20:35"
},
"aircraft":
{"modelCode": "a321",
"modelText": "airbus a321-231"
},
"airline":
{"name": "american airlines",
"iataCode": "aa",
"icaoCode": "aal"},
"flight":
{"number": "274",
"iataNumber": "aa274",
"icaoNumber": "aal274"}
},
Airline Routes API
Request
For information about all routes.
GET http://aviation-edge.com/v2/public/routes?key=[API_KEY]&limit=10000&offset=0
For information about a specific route.
GET http://aviation-edge.com/v2/public/routes?key=[API_KEY]&departureIata=OTP&departureIcao=LROP&airlineIata=0B&airlineIcao=BMS&flightNumber=101
Response
[
{ "departureIata": "OTP",
"departureIcao": "LROP",
"departureTerminal": null,
"departureTime": "09:15:00",
"arrivalIata": "TRN",
"arrivalIcao": "LIMF",
"arrivalTerminal": null,
"arrivalTime": "10:45:00",
"airlineIata": "0B",
"airlineIcao": "BMS",
"flightNumber": "101",
"codeshares": null,
"regNumber": "YR-BAP"
}
]
Nearby API
Request
For airports and cities nearby a certain latitude or longitude, within a certain distance.
GET http://aviation-edge.com/v2/public/nearby?key=[API_KEY]&lat=-5.466667&lng=122.6333&distance=100
Response
[
{
"code": "BUW",
"icao": "WAWB",
"name": "Baubau",
"cityCode": "BUW",
"cityName": "Baubau",
"countryCode": "ID",
"countryName": "Indonesia",
"lat": -5.466667,
"lng": 122.63333,
"timezone": "Asia/Makassar",
"type": "airport",
"isRailRoad": 0,
"isBusStation": 0, "distance": 0 },
{
"code": "RAQ",
"icao": "WAWR",
"name": "Sugimanuru",
"cityCode": "RAQ",
"cityName": "Raha",
"countryCode": "ID",
"countryName": "Indonesia",
"lat": -4.916667,
"lng": 122.583336,
"timezone": "Asia/Makassar",
"type": "airport",
"isRailRoad": 0,
"isBusStation": 0,
"distance": 61404
}
]
Autocomplete API
Request
To receive a response of possible options for autocomplete based on a query.
GET http://aviation-edge.com/v2/public/autocomplete?key=[API_KEY]&query=ams
Response
[
{
"countries": null,
"citiesByCountries": null,
"airportsByCountries": null, "cities":
[
{
"code": "AMS",
"name": "Amsterdam",
"cityCode": "AMS",
"cityName": "Amsterdam",
"countryCode": "NL",
"countryName": "Netherlands",
"lat": 52.3730556, "lng": 4.8922222,
"timezone": "Europe/Amsterdam",
"type": "city" } ],
"airports":
[
{
"code": "ZYA",
"name": "Amsterdam Centraal Railway Station",
"cityCode": "AMS",
"cityName": "Amsterdam",
"countryCode": "NL",
"countryName": "Netherlands",
"lat": 52.3730556,
"lng": 4.8922222,
"timezone": "Europe/Amsterdam",
"type": "rail_station",
"isRailRoad": 1,
"isBusStation": 0 },
{
"code": "AMS",
"name": "Schiphol",
"cityCode": "AMS",
"cityName": "Amsterdam",
"countryCode": "NL",
"countryName": "Netherlands",
"lat": 52.30907,
"lng": 4.763385,
"timezone": "Europe/Amsterdam",
"type": "airport",
"isRailRoad": 0,
"isBusStation": 0 } ],
"airportsByCities":
[
{
"code": "AMS",
"name": "Schiphol",
"cityCode": "AMS",
"cityName": "Amsterdam",
"countryCode": "NL",
"countryName": "Netherlands",
"lat": 52.30907,
"lng": 4.763385,
"timezone": "Europe/Amsterdam",
"type": "airport",
"isRailRoad": 0,
"isBusStation": 0
},
Etc.
Satellite Tracker API
Request
All on-orbit satellite information in one call:
GET http://aviation-edge.com/v2/public/satelliteDetails?key=[API_KEY]&limit=30000
Individual satellites based on NORAD number:
GET http://aviation-edge.com/v2/public/satelliteDetails?key=[API_KEY]&code=408
Satellites based on launch year:
GET http://aviation-edge.com/v2/public/satelliteDetails?key=[API_KEY]&launchYear=1961
Individual satellites based on international designator (NSSDC ID) number:
GET http://aviation-edge.com/v2/public/satelliteDetails?key=[API_KEY]&intldes=1961-015EH
Filtering based on orbital apogee and perigee
GET http://aviation-edge.com/v2/public/satelliteDetails?key=[API_KEY]&orbitalapogee=1035
GET http://aviation-edge.com/v2/public/satelliteDetails?key=[API_KEY]&orbitalperigee=939
Response
[
{
"code":408,
"country":"US",
"intldes":"1961-015EH",
"launchDate":"1961-06-29",
"launchNum":"15",
"launchPart":"EH",
"launchYear":"1961",
"name":"THOR ABLESTAR DEB",
"orbitalApogee":"1035",
"orbitalInclination":"66.79",
"orbitalPerigee":"929",
"orbitalPeriod":"104.73",
"result":{
"ECI":{
"posX":0.5454890369,
"posY":-0.2586148768,
"posZ":-0.9850851542,
"velX":0.0575062685,
"velY":0.0304486006,
"velZ":0.0232874073},
"geography":{
"alt":1006.4047009328,
"lat":-58.6467050931,
"lon":129.4707358377},
"satelliteInfo":{
"classification":"U",
"idLaunchNumber":"015",
"idLaunchPiece":"EH ",
"idLaunchYear":"61",
"orbit":99888,
"rightAscension":21.7828,
"satnumber":408}
},
"size":"MEDIUM",
"tle1":"1 408U 61015EH 20129.79820524 -.00000021 +00000-0 +54301-4 0 9997",
"tle2":"2 408 066.7883 021.7828 0070545 199.3274 220.5694 13.74946678998881",
"type":"DEBRIS",
"updated":1589063274000
}
]
Get Started Now
Try the most powerful all-in-one aviation API solution today.

Aviation Edge © 2010-2017 - DMCA Protected - legal entity ClearSky Ltd., Bulgaria, Blagoevgrad, 4, Dame Gruev Str. +35987723522
Cancellation, refund and subscription fees | Site disclaimer | Privacy Policy

Aviation Edge © 2010-2017 - DMCA Protected - legal entity ClearSky Ltd., Bulgaria, Blagoevgrad, 4, Dame Gruev Str. +35987723522
Cancellation, refund and subscription fees | Site disclaimer | Privacy Policy

Aviation Edge © 2010-2017 - DMCA Protected - legal entity ClearSky Ltd., Bulgaria, Blagoevgrad, 4, Dame Gruev Str. +35987723522 Cancellation, refund and subscription fees | Site disclaimer | Privacy Policy