RacingHub

Formula 1 history from 1950 to today, as clean JSON

🩺 Health & FoodHEALTHYchecked 5h ago
AUTH NONECORS AGENT HTTPS COMMERCIAL ?

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.

92HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: 92 · healthy
Uptime history
99.02%90 days
98.3%30 days
473P50 · ms
3557P95 · ms
operationalpartialdownno data
Response time · last 48 checks
Fastest 211 ms, slowest 2020 ms, most recent 357 ms.
Live response samplecaptured by our last successful check
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
}
Call itcurl · fetch · python
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())
Endpoints · 6HealthyFULL DOCS ↗
Monitored path responding — GET /seasons473 mschecked 5h ago
GET/seasonsPROBED

Formula 1 history from 1950 to today, as clean JSON

GET/seasons?limit=5

Paginated variant with limit parameter.

GET/drivers

Get All Drivers

GET/drivers/{driver_id}

Get Driver by ID

GET/drivers/{driver_id}/results

Get Driver Race Results

GET/drivers/{driver_id}/seasons

Get Driver Season History

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

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.