GET api/[year]/constructors-championship

Try it

This endpoint retrieves constructors standings by the provided year.

Example Response

{
  "api": "https://f1connectapi.vercel.app",
  "url": "https://f1connectapi.vercel.app/api/2021/constructors-championship?limit=1&offset=0",
  "limit": 1,
  "offset": 0,
  "total": 1,
  "season": "2021",
  "championshipId": "f1_2021",
  "constructors_championship": [
    {
      "classificationId": 891,
      "teamId": "mercedes",
      "points": 613.5,
      "position": 1,
      "wins": 9,
      "team": {
        "teamName": "Mercedes Formula 1 Team",
        "country": "Germany",
        "firstAppareance": 1954,
        "constructorsChampionships": 8,
        "driversChampionships": 9,
        "url": "https://en.wikipedia.org/wiki/Mercedes-Benz_in_Formula_One"
      }
    }
  ]
}

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.
constructors_championshiparrayA list of contructor championship objects returned from the API.
classificationIdnumberThe classification id.
teamIdstringThe team id.
pointsnumberThe points scored by the team.
positionnumberThe position of the team in the championship.
winsnumberThe number of wins for the team.
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