Catalog/sports-f1-standings

Data

F1 driver + constructor standings API

Formula 1 driver and constructor championship standings for a season, normalized from the keyless Jolpica-F1 API (Ergast successor). Answers queries like 'F1 driver standings 2023', 'who leads the constructors championship', 'how many points does Verstappen have'.

Price$0.01per request
MethodPOST
Route/v1/data/sports-f1-standings
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
sportsf1formula1motorsportstandingschampionshipracingjolpica
API URLhttps://x402.hexl.dev/v1/data/sports-f1-standings
Integration docs
Example request
{
  "season": "2023"
}
Example response
{
  "season": "2023",
  "round": 22,
  "driverStandings": [
    {
      "position": 1,
      "driverId": "max_verstappen",
      "code": "VER",
      "name": "Max Verstappen",
      "nationality": "Dutch",
      "constructor": "Red Bull",
      "points": 575,
      "wins": 19
    }
  ],
  "constructorStandings": [
    {
      "position": 1,
      "constructorId": "red_bull",
      "name": "Red Bull",
      "nationality": "Austrian",
      "points": 860,
      "wins": 21
    }
  ]
}
Input schema
{
  "type": "object",
  "properties": {
    "season": {
      "type": [
        "string",
        "number"
      ],
      "examples": [
        "2023",
        "current"
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}