Flightradar24 Flight Scraper
Pricing
from $4.99 / 1,000 results
Flightradar24 Flight Scraper
Fetches live aircraft and flight data including position, altitude, speed, callsign, aircraft, registration, airports, and flight details. Supports live-zone, registration, and flight-number searches with optional enrichment.
Pricing
from $4.99 / 1,000 results
Rating
0.0
(0)
Developer
Jamshaid Arif
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
a day ago
Last modified
Categories
Share
Pulls live flight and aircraft data from Flightradar24's open JSON endpoints — no API key, no subscription, no browser. Three modes:
live_zone—: every aircraft currently inside a lat/lon box, with position, altitude, speed, heading, squawk, registration, aircraft type, callsign and origin/destination IATA codes.registration/flight_number— : recent and scheduled flights for one tail number or flight number, with scheduled vs actual departure/arrival times, airline, aircraft model and airports.- Optional per-flight enrichment in
live_zonemode via `` (airline, full aircraft model, airport names, trail length).
Every record keeps the untouched API payload in raw (and raw_detail when details are on).
Input
| Field | Default | Description |
|---|---|---|
mode | live_zone | live_zone, registration, or flight_number. |
bounds | 58.00,42.00,-11.00,20.00 | north,south,west,east box for live_zone. |
query | "" | Registration (B-HPJ) or flight number (CX255) for the other two modes. |
include_details | false | Add clickhandler detail to each live aircraft (slow, rate limited). |
limit | 100 | Max records (1–1500). |
Output
{"flight_id": "41332733","icao_24bit": "40823F","latitude": 51.862,"longitude": -0.303,"heading": 318,"altitude": 38025,"ground_speed": 396,"squawk": "","radar": "F-BDWY1","aircraft_code": "A21N","registration": "G-HLYM","time": 1786887903,"origin_airport_iata": "DBV","destination_airport_iata": "MAN","number": "LS962","on_ground": false,"vertical_speed": 0,"callsign": "EXS92SG","airline_icao": "EXS","raw": ["...original feed.js array..."]}
Data source
Unofficial Flightradar24 JSON endpoints, reachable without credentials when called with a
desktop browser User-Agent and Referer: https://www.flightradar24.com/. Requests go
through curl_cffi with Chrome/Safari TLS impersonation and a 30 s timeout; paged calls
sleep 0.8 s between pages. feed.js sits behind a load balancer whose nodes intermittently
answer with statistics only and no aircraft, so the scraper retries up to 8 times.
FR24 states on every API response that the contents and derived data are the property of Flightradar24 AB; using, modifying or redistributing them without written permission may be prohibited. Keep request volume low, and use the official API at https://fr24api.flightradar24.com/ for commercial use.