RacingHub
Formula 1 history from 1950 to today, as clean JSON
RacingHub is an open-source REST API wrapping the F1DB dataset of Formula 1 seasons, drivers, constructors, race results, and standings. Endpoints are paginated JSON — the seasons list summarizes champions and race counts year by year. Free and keyless; an independent project not affiliated with Formula 1.
GET https://racinghub.net/api/v1/seasons
{
"data": [
{
"year": 2026,
"total_races": 22,
"total_drivers": 31,
"total_constructors": 11,
"champion": {
"driver_id": "kimi-antonelli",
"driver_name": "Andrea Kimi Antonelli",
"points": 171,
"race_wins": 5
},
"constructor_champion": {
"constructor_id": "mercedes",
"constructor_name": "Mercedes",
"points": 302
}
}
],
"page": 1,
"total": 77,
"total_pages": 77,
"has_next": true
}curl "https://racinghub.net/api/v1/seasons"const res = await fetch("https://racinghub.net/api/v1/seasons");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://racinghub.net/api/v1/seasons")
print(res.json())/seasonsPROBEDFormula 1 history from 1950 to today, as clean JSON
/seasons?limit=5Paginated variant with limit parameter.
/driversGet All Drivers
/drivers/{driver_id}Get Driver by ID
/drivers/{driver_id}/resultsGet Driver Race Results
/drivers/{driver_id}/seasonsGet Driver Season History
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.
RacingHub: common questions
Is RacingHub free to use?
Yes — RacingHub is a free health & food API. Free tier: Free — no key required. Whether the free tier allows commercial use is unclear — check the provider docs.
Does RacingHub need an API key?
No — RacingHub needs no API key or signup. You can call it straight away; rate limits still apply (100 req/window · 99 remaining · resets 60).
Can I call RacingHub from the browser?
Yes — RacingHub 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 RacingHub up right now?
As of our last scheduled check, RacingHub is healthy with 99.02% uptime over 90 days and a 473 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.