π―Flight Tracking API
With this API you will be able to track any plane with its number.
Guide
Parameters
Description
Type
Usage
curl "https://api.flightapi.io/airline/6537facc0175698b26894ef8d67bc?num=33&name=DL&date=20231024"// require the Unirest or any other module to make an HTTP GET request
const unirest = require('unirest')
unirest.get('https://api.flightapi.io/airline/6537facc0175698b26894ef8d67bc?num=33&name=DL&date=20231024')
.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/airline/6537facc0175698b26894ef8d67bc?num=33&name=DL&date=20231024')
print (resp.json())Response
Last updated