OpenF1
Open Formula 1 telemetry, laps, sessions and positions as JSON
OpenF1 publishes Formula 1 data, from session schedules and lap times to car telemetry and driver positions. Historical queries are open and keyless, returning tidy JSON arrays you can filter by year, session or driver. Live real-time access may require a free account.
GET https://api.openf1.org/v1/sessions?year=2023&session_name=Sprint
{
"session_key": 9069,
"session_type": "Race",
"session_name": "Sprint",
"date_start": "2023-04-29T13:30:00+00:00",
"circuit_short_name": "Baku",
"country_name": "Azerbaijan",
"location": "Baku",
"year": 2023
}curl "https://api.openf1.org/v1/sessions?year=2023&session_name=Sprint"const res = await fetch("https://api.openf1.org/v1/sessions?year=2023&session_name=Sprint");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.openf1.org/v1/sessions?year=2023&session_name=Sprint")
print(res.json())/sessions?year=2023&session_name=SprintPROBEDOpen Formula 1 telemetry, laps, sessions and positions as JSON
/sessions?limit=5Sessions — documented GET route.
/sessions?page=1Sessions — documented GET route.
/laps?session_key=9839&driver_number=44&csv=trueLaps — documented GET route.
/laps?session_key=9839&driver_number=44&lap_numberLaps — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
OpenF1: common questions
Is OpenF1 free to use?
Yes — OpenF1 is a free health & food API. Free tier: Free & open (historical); real-time may require a free account. Whether the free tier allows commercial use is unclear — check the provider docs.
Does OpenF1 need an API key?
No — OpenF1 needs no API key or signup. You can call it straight away; rate limits still apply (Retry-After: 60s).
Can I call OpenF1 from the browser?
Yes — OpenF1 returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is OpenF1 up right now?
As of our last scheduled check, OpenF1 is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.