πTrack Flights between Airports
With this API you can track flights between any two airports. You can track flights for the next 365 days.
Guide
Parameters
Description
Type
Usage
curl "https://api.flightapi.io/trackbyroute/api_key?date=20230724&airport1=AMS&airport2=LIS"// require the Unirest or any other module to make an HTTP GET request
const unirest = require('unirest')
unirest.get('https://api.flightapi.io/trackbyroute/api_key?date=20230724&airport1=AMS&airport2=LIS')
.then(response => {
console.log(response.body);
})
.catch(error => {
console.log(error);
});
// Set your API key before making the request
import requests
resp = requests.get('https://api.flightapi.io/trackbyroute/api_key?date=20230724&airport1=AMS&airport2=LIS')
print (resp.json())Response
Last updated