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