RacingHub

Formula 1 history from 1950 to today, as clean JSON

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.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
ON PROBE SCHEDULE

We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗

Uptime historystarts after first probe

On our probe schedule. Uptime charts appear after the first check lands.

Example responsefrom provider docs — not verified by us
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 · 6On scheduleFULL DOCS ↗
On schedule — GET /seasons awaits first probe
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

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.