Data
F1 season race calendar API
Full Formula 1 race calendar for a season with round, circuit, locality, country, date/time, and sprint flag, normalized from the keyless Jolpica-F1 API. Answers queries like 'F1 race calendar 2023', 'when is the next Grand Prix', 'which races have sprints'.
Price$0.01per request
MethodPOST
Route/v1/data/sports-f1-schedule
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
sportsf1formula1motorsportschedulecalendarracingjolpica
API URL
Integration docshttps://x402.hexl.dev/v1/data/sports-f1-scheduleExample request
{
"season": "2023"
}Example response
{
"season": "2023",
"raceCount": 22,
"races": [
{
"round": 1,
"name": "Bahrain Grand Prix",
"circuit": "Bahrain International Circuit",
"locality": "Sakhir",
"country": "Bahrain",
"date": "2023-03-05",
"time": "15:00:00Z",
"dateUtc": "2023-03-05T15:00:00Z",
"hasSprint": false,
"url": "https://en.wikipedia.org/wiki/2023_Bahrain_Grand_Prix"
}
]
}Input schema
{
"type": "object",
"properties": {
"season": {
"type": [
"string",
"number"
],
"examples": [
"2023",
"current"
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}