F1 API

F1 API — Formula 1 race schedules and results

AUTH NONECORS AGENT ?HTTPS COMMERCIAL ?

F1 API exposes formula 1 race schedules and results We verified a keyless GET endpoint returning JSON (Sports & Fitness). Check the provider docs for rate limits and terms before production use.

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://f1api.dev/api/2026/10/race

{
  "api": "https://f1api.dev",
  "url": "https://f1api.dev/api/2026/10/race",
  "limit": 30,
  "offset": 0,
  "total": 22,
  "season": 2026,
  "races": {
    "round": "10",
    "date": "2026-06-28",
    "time": "13:00:00Z",
    "url": "https://en.wikipedia.org/wiki/2026_Austrian_Grand_Prix",
    "raceId": "austrian_2026",
    "raceName": "Formula 1 Lenovo Austrian Grand Prix 2026",
    "circuit": [
      {
        "circuitId": "red_bull_ring",
        "circuitName": "Red Bull Ring",
        "country": "Austria",
        "city": "Spielberg",
        "circuitLength": "4318km",
        "corners": 10,
        "firstParticipationYear": 1970,
        "lapRecord": "1:05:619"
      }
    ],
    "results": [
      {
        "position": "1",
        "points": 25,
        "grid": "1",
        "time": "1:26:37.979",
        "fastLap": "1:10.683",
        "retired": null,
        "driver": {
          "driverId": "russell",
          "number": 63,
          "shortName": "RUS",
          "url": "https://en.wikipedia.org/wiki/George_Russell_(racing_driver)",
          "name": "George",
          "surname": "Russell",
          "nationality": "Great Britain",
          "birthday": "15/02/1998"
        },
        "team": {
          "teamId": "mercedes",
          "teamName": "Mercedes Formula 1 Team",
          "nationality": "Germany",
          "firstAppareance": 1954,
          "constructorsChampionships": 8,
          "driversChampionships": 9,
          "url": "https://en.wikipedia.org/wiki/Mercedes-Benz_in_Formula_One"
        }
      },
      {
        "position": "2",
        "points": 18,
        "grid": "5",
        "time": "+1.611",
        "fastLap": "1:10.483",
        "retired": null,
        "driver": {
          "driverId": "max_verstappen",
          "number": 33,
          "shortName": "VER",
          "url": "https://en.wikipedia.org/wiki/Max_Verstappen",
          "name": "Max",
          "surname": "Verstappen",
          "nationality": "Netherlands",
          "birthday": "1997-09-30"
        },
        "team": {
          "teamId": "red_bull",
          "teamName": "Red Bull Racing",
          "nationality": "Austria",
          "firstAppareance": 2005,
          "constructorsChampionships": 6,
          "driversChampionships": 8,
          "url": "https://en.wikipedia.org/wiki/Red_Bull_Racing"
        }
      }
    ]
  }
}
Call itcurl · fetch · python
curl "https://f1api.dev/api/2026/10/race"
const res = await fetch("https://f1api.dev/api/2026/10/race");
const data = await res.json();
console.log(data);
import requests

res = requests.get("https://f1api.dev/api/2026/10/race")
print(res.json())
Endpoints · 6On scheduleFULL DOCS ↗
On schedule — GET /api/2026/10/race awaits first probe
GET/api/2026/10/racePROBED

F1 API — Formula 1 race schedules and results

GET/api

Api — documented GET route.

GET/api/1

Api details by ID (example: 1).

GET/api?limit=10

Api — documented GET route.

GET/api/search?q=test

Search by query parameters.

GET/api/seasons

Season listing.

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.

F1 API: common questions

Is F1 API free to use?

Yes — F1 API is a free health & food API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.

Does F1 API need an API key?

No — F1 API needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).

Can I call F1 API from the browser?

Yes — F1 API 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 F1 API up right now?

F1 API 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.