GET api/current/drivers

Try it

This endpoint retrieves details about all the drivers in the database. Of the current season.

Example Response

{
  "api": "https://f1connectapi.vercel.app",
  "url": "https://f1connectapi.vercel.app/api/current/drivers?limit=1",
  "limit": 1,
  "offset": 0,
  "total": 1,
  "season": 2025,
  "championshipId": "f1_2025",
  "drivers": [
    {
      "driverId": "max_verstappen",
      "name": "Max",
      "surname": "Verstappen",
      "nationality": "Netherlands",
      "birthday": "30/09/1997",
      "number": 33,
      "shortName": "VER",
      "url": "https://en.wikipedia.org/wiki/Max_Verstappen",
      "teamId": "red_bull"
    }
  ]
}

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.
seasonnumberThe season of the championship.
championshipIdstringThe championship id.
driversarrayA list of driver objects returned from the API.
driverIdstringA unique identifier for the driver.
namestringThe driver's first name.
surnamestringThe driver's surname.
nationalitystringThe driver's nationality.
birthdaystringThe driver's birthdate in DD/MM/YYYY format.
numbernumberThe driver's racing number.
shortNamestringThe driver's abbreviated name, often used in standings or graphics.
urlstringA URL to the Wikipedia page of the driver.
teamIdstringThe team id.

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