Data
F1 race results by round API
Finishing order for a Formula 1 race (season + round) with position, driver, constructor, grid, laps, status, time, points, and fastest lap, normalized from the keyless Jolpica-F1 API. Answers queries like 'who won the Bahrain GP', 'F1 race 1 results 2023', 'where did Hamilton finish'.
Price$0.01per request
MethodPOST
Route/v1/data/sports-f1-results
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
sportsf1formula1motorsportresultsraceracingjolpica
API URL
Integration docshttps://x402.hexl.dev/v1/data/sports-f1-resultsExample request
{
"season": "2023",
"round": 1
}Example response
{
"found": true,
"season": "2023",
"round": 1,
"raceName": "Bahrain Grand Prix",
"circuit": "Bahrain International Circuit",
"country": "Bahrain",
"date": "2023-03-05",
"winner": "Max Verstappen",
"results": [
{
"position": 1,
"driverId": "max_verstappen",
"code": "VER",
"name": "Max Verstappen",
"constructor": "Red Bull",
"grid": 1,
"laps": 57,
"status": "Finished",
"time": "1:33:56.736",
"points": 25,
"fastestLap": "1:36.236"
}
]
}Input schema
{
"type": "object",
"required": [
"round"
],
"properties": {
"season": {
"type": [
"string",
"number"
],
"examples": [
"2023",
"current"
]
},
"round": {
"type": [
"number",
"string"
],
"examples": [
1
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}