FlightRadarAPI
Unofficial SDK for FlightRadar24 for Python 3 and Node.js.
If you want to use the data collected using this SDK commercially, you need to subscribe to the Business plan.
See more information at: https://www.flightradar24.com/terms-and-conditions
Installing FlightRadarAPI:
$ npm install flightradarapi
Basic Usage:
Import the class FlightRadar24API
and create an instance of it.
const { FlightRadar24API } = require("flightradarapi");
const frApi = new FlightRadar24API();
Getting flights list:
let flights = await frApi.getFlights(...);
Getting airports list:
let airports = await frApi.getAirports(...);
Getting airlines list:
let airlines = await frApi.getAirlines();
Getting zones list:
let zones = await frApi.getZones();
Documentation
Explore the documentation of FlightRadarAPI package, for Python or NodeJS, through this site.