F1 API
F1 API — Formula 1 race schedules and results
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.
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://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"
}
}
]
}
}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())/api/2026/10/racePROBEDF1 API — Formula 1 race schedules and results
/apiApi — documented GET route.
/api/1Api details by ID (example: 1).
/api?limit=10Api — documented GET route.
/api/search?q=testSearch by query parameters.
/api/seasonsSeason listing.
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.
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.