A client library for fetching live aircraft data from Flightradar24. Version 1.0.1 supports Node.js >=18. It provides two main functions: fetchFromRadar to query flights within a bounding box and fetchFlight to get detailed flight info. Works only in Node.js, not browsers. Unofficial API wrapper. No authentication required. Lightweight with no dependencies.
npm install flightradar24-clientNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to fetch flights within a bounding box and get detailed flight info.
Use import syntax and ensure your project is configured for ES modules.
Verify bounding box order: north (top), west (left), south (bottom), east (right).
Use decimal degrees (e.g., 52.5 instead of 52°30').
Always use the id from a recent fetchFromRadar call.
Add delays between requests to avoid being blocked.
Use only in Node.js. There is no browser-compatible build.
Change to import syntax or use dynamic import().
Use import { fetchFromRadar } from 'flightradar24-client'.Check that north > south and bounding box covers area with live flights.
Check internet connection and DNS resolution.
No dependency data recorded yet.