F1 API

F1 API — Formula 1 race schedules and results

🩺 Health & FoodHEALTHYchecked 1h ago
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.

47HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: 47 · healthy
Uptime history
45.1%90 days
50.0%30 days
4909P50 · ms
4999P95 · ms
operationalpartialdownno data
Response time · last 48 checks
Fastest 4452 ms, slowest 4991 ms, most recent 4988 ms.
Live response samplecaptured by our last successful check
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 · 6HealthyFULL DOCS ↗
Monitored path responding — GET /api/2026/10/race4909 mschecked 1h ago
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

Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.

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?

As of our last scheduled check, F1 API is healthy with 45.1% uptime over 90 days and a 4909 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.