fr24
Retrieve Flightradar24 data over gRPC
What it is and what it does
fr24 is a Python client for Flightradar24's gRPC API that fetches real-time and historical flight data—including live feeds within geographic bounds, aircraft tracking, flight status, and detailed aircraft information. It uses asynchronous programming to handle concurrent requests efficiently and supports multiple output formats (protobuf, dictionary, Polars dataframe) plus file-based caching via platformdirs. The library comes with minimal core dependencies but offers optional extras for dataframe I/O (polars) and a command-line interface.
The package is designed for developers building aviation data applications, research tools, or monitoring systems that need structured access to Flightradar24's data without relying on deprecated JSON endpoints. It handles gRPC protocol details internally, exposing a clean async API. As of May 2026, Cloudflare bot protection with TLS fingerprinting requires gRPC—the library's primary transport—making it the supported path forward for programmatic access.
Use it for:
- Monitor real-time aircraft positions and flight status within specific geographic regions for air traffic analysis.
- Build historical flight tracking dashboards by caching live feed snapshots and querying them later with Polars.
- Retrieve detailed flight information (origin, destination, aircraft type, callsign) for a specific live flight.
- Export flight data to Parquet or CSV for downstream analysis in data pipelines or research workflows.
- Query the most viewed flights or nearest aircraft within a radius for real-time aviation monitoring applications.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
fr24 retrieves real-time and historical flight data from Flightradar24 using gRPC, supporting live feeds, flight tracking, status updates, and detailed aircraft information.
Yes. fr24 is actively maintained, has low install friction, no known vulnerabilities, and provides the only supported path to Flightradar24 data after JSON API deprecation. Install it if you need programmatic access to flight data; be aware you'll need valid Flightradar24 credentials and should review the legal notice regarding data usage restrictions.
Install
fr24 on PyPI
pip
pip install fr24uv
uv add fr24poetry
poetry add fr24Installing fr24
Before you install
Low install friction with six runtime dependencies. Actively maintained with recent commits and no known vulnerabilities. Supports Python 3.9 through 3.14.
License in practice
MIT license permits free use, modification, and redistribution with minimal restrictions—suitable for commercial and open-source projects.
Quickstart
import asyncio
from fr24 import FR24, BoundingBox
async def main():
async with FR24() as client:
bbox = BoundingBox(south=42, north=52, west=-8, east=10)
result = await client.live_feed.fetch(bbox)
print(result.to_dict())
asyncio.run(main())
Requires Flightradar24 subscription key and token (via environment variables or explicit configuration); as of 2026-05-01, JSON APIs are no longer supported due to Cloudflare bot protection.
Verify before relying
- Whether Cloudflare bot protection affects reliability or requires authentication beyond what the library handles
- Performance characteristics under high-frequency polling or concurrent request loads
- Whether gRPC endpoint availability or rate limits are documented
Package facts
| License | MIT License Copyright (c) 2023 Abraham Cheung Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to… (full text in the JSON record) (permissive) |
| Python support | supports the current Python release (>=3.9) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 6 — httpx, isqx, orjson, platformdirs, protobuf, typing-extensions |
| Maintenance | actively maintained — 102 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 97,798/month — #13,126 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: fr24-0.3.1-py3-none-any.whl
Tags
More Internet packages
Botocore provides low-level, data-driven access…
permissive · top 100 on PyPI
aiobotocoreProvides an async client for AWS services using…
permissive · top 100 on PyPI
pydanticPydantic validates Python data structures…
permissive · top 100 on PyPI
filelockProvides a platform-independent file locking…
permissive · top 100 on PyPI
fastapiFastAPI is a Python web framework for building…
permissive · top 100 on PyPI
googleapis-common-protosProvides common Protocol Buffer message…
permissive · top 100 on PyPI
FlightRadarAPIUnofficial Python SDK for querying…
permissive · top 15,000 on PyPI
fast-flightsScrapes flight data from Google Flights by…
permissive · top 15,000 on PyPI
flightsProgrammatic access to Google Flights search…
permissive · top 15,000 on PyPI
fprime-fppFPP is a modeling language and compiler for the…
permissive · top 15,000 on PyPI
fprime-toolsProvides command-line tools and utilities for…
permissive · top 15,000 on PyPI
fprime-visualA browser-based web application for visualizing…
permissive · top 15,000 on PyPI
lseg-dataClient library for accessing LSEG Data Platform…
permissive · top 15,000 on PyPI
py-grpc-prometheusAdds Prometheus metrics collection to gRPC…
unclear · top 5,000 on PyPI
eurostatFetches statistical data and metadata from…
permissive · top 15,000 on PyPI
dhanhqPython client library for the Dhan trading API,…
permissive · top 15,000 on PyPI