GET api/current/teams

Try it

This endpoint retrieves details about all the teams in the database. Based on the current season.

Example Response

{
  "api": "https://f1connectapi.vercel.app",
  "url": "https://f1connectapi.vercel.app/api/current/teams?limit=1",
  "limit": 1,
  "offset": 0,
  "total": 1,
  "season": 2025,
  "championshipId": "f1_2025",
  "teams": [
    {
      "teamId": "red_bull",
      "teamName": "Red Bull Racing",
      "teamNationality": "Austria",
      "firstAppeareance": 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.
teamsarrayThe teams array of team objects.
teamIdstringA unique identifier for the team.
teamNamestringThe team name.
teamNationalitystringThe team nationality.
firstAppeareancenumberThe year the team first appeared in a Grand Prix.
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