GET api/current/drivers-championship

Try it

This endpoint retrieves drivers standings from the current season.

Example Response

{
  "api": "https://f1connectapi.vercel.app",
  "url": "https://f1connectapi.vercel.app/api/current/drivers-championship?limit=1&offset=0",
  "limit": 1,
  "total": 1,
  "season": 2024,
  "championshipId": "f1_2024",
  "drivers_championship": [
    {
      "classificationId": 1,
      "driverId": "max_verstappen",
      "teamId": "red_bull",
      "points": 437,
      "position": 1,
      "wins": 9,
      "driver": {
        "name": "Max",
        "surname": "Verstappen",
        "nationality": "Netherlands",
        "birthday": "30/09/1997",
        "number": 33,
        "shortName": "VER",
        "url": "https://en.wikipedia.org/wiki/Max_Verstappen"
      },
      "team": {
        "teamId": "red_bull",
        "teamName": "Red Bull Racing",
        "country": "Austria",
        "firstAppareance": 2005,
        "constructorsChampionships": 6,
        "driversChampionships": 8,
        "url": "https://en.wikipedia.org/wiki/Red_Bull_Racing"
      }
    }
  ]
}

Response Types

FieldTypeDescription
apistringThe base API URL for the F1 Connect service.
urlstringThe URL used to fetch the drivers data with query parameters for limit and offset.
limitnumberThe number of results returned per request.
offsetnumberThe offset used for pagination, i.e., the starting point for the result set.
totalnumberThe total number of drivers available in the dataset.
seasonstringThe season of the championship.
championshipIdstringThe championship id.
drivers_championshiparrayA list of drivers championship objects returned from the API.
classificationIdnumberThe classification id.
driverIdstringThe driver id.
teamIdstringThe team id.
pointsnumberThe points scored by the driver.
positionnumber | nullThe position of the driver in the championship.
winsnumberThe number of wins for the driver.
driverobjectThe driver object.
namestringThe driver's first name.
surnamestringThe driver's surname.
nationalitystringThe driver's nationality.
birthdaystringThe driver's birthday.
numbernumberThe driver's number.
shortNamestringThe driver's short name.
urlstringA URL to the Wikipedia page of the driver.
teamobjectThe team object.
teamIdstringThe team id.
teamNamestringThe team name.
countrystringThe team country.
firstAppareancenumberThe year the team first appeared in the championship.
constructorsChampionshipsnumber | nullThe number of constructors championships the team has won.
driversChampionshipsnumber | nullThe number of drivers championships the team has won.
urlstringA URL to the Wikipedia page of the team.

Response Params

ParamDefaultData
limit30Number of records returned per request.
offset0Number of records skipped before starting to fetch.

Response Status

StatusDescription
200Successful request
404Resource not found
500Internal server error