flightradarapi

1.3.28 • Public • Published

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

Python Package Pypi License Python Version Npm Downloads Frequency

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(...);  // Returns a list of Flight objects

Getting airports list:

let airports = await frApi.getAirports(...);  // Returns a list of Airport objects

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.

Package Sidebar

Install

npm i flightradarapi

Weekly Downloads

50

Version

1.3.28

License

MIT

Unpacked Size

52.7 kB

Total Files

13

Last publish

Collaborators

  • jeanextreme002