Socket
Socket
Sign inDemoInstall

flightradarapi

Package Overview
Dependencies
Maintainers
0
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flightradarapi

SDK for FlightRadar24


Version published
Maintainers
0
Created
Source

FlightRadarAPI

Unofficial SDK for FlightRadar24 for Python 3 and Node.js.

This SDK should only be used for your own educational purposes. If you are interested in accessing Flightradar24 data commercially, please contact business@fr24.com. See more information at Flightradar24's terms and conditions.

Node.js 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.

Keywords

FAQs

Package last updated on 01 Aug 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc