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.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
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.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
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 (Unpublished).
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?
RacingHub is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.