GET api/[year]/[round]/qualy

Try it

This endpoint retrieves the results of the qualifying of the given round.

Example Response

{
  "api": "https://f1connectapi.vercel.app",
  "url": "https://f1connectapi.vercel.app/api/2024/1/qualy?limit=1",
  "limit": 1,
  "offset": 0,
  "total": 1,
  "races": {
    "round": "1",
    "qualyTime": "16:00:00Z",
    "qualyDate": "2024-03-01",
    "url": "https://en.wikipedia.org/wiki/2024_Bahrain_Grand_Prix",
    "raceId": "bahrein_2024",
    "raceName": "Gulf Air Bahrain Grand Prix 2024",
    "circuit": {
      "circuitId": "bahrein",
      "circuitName": "Bahrein International Circuit",
      "country": "Bahrein",
      "city": "Sakhir",
      "circuitLength": "5412km",
      "lapRecord": "1:31:447",
      "firstParticipationYear": 2004,
      "corners": 15,
      "fastestLapDriverId": "de_la_rosa",
      "fastestLapTeamId": "mclaren",
      "fastestLapYear": 2005,
      "url": "https://en.wikipedia.org/wiki/Bahrain_International_Circuit"
    },
    "qualyResults": [
      {
        "classificationId": 1,
        "driverId": "max_verstappen",
        "teamId": "red_bull",
        "q1": "1:30:031",
        "q2": "1:29:374",
        "q3": "1:29:179",
        "gridPosition": 1,
        "driver": {
          "driverId": "max_verstappen",
          "number": 33,
          "shortName": "VER",
          "url": "https://en.wikipedia.org/wiki/Max_Verstappen",
          "name": "Max",
          "surname": "Verstappen",
          "nationality": "Netherlands",
          "birthday": "30/09/1997"
        },
        "team": {
          "teamId": "red_bull",
          "teamName": "Red Bull Racing",
          "nationality": "Austria",
          "firstAppareance": 2005,
          "constructorsChampionships": 6,
          "driversChampionships": 8,
          "url": "https://en.wikipedia.org/wiki/Red_Bull_Racing"
        }
      }
    ]
  }
}

Response Types

FieldTypeDescription
roundstringThe race round of the championship.
qualyDatestringThe qualy date in format YYYY-MM-DD.
qualyTimestringThe qualy time in format HH:MM:SS.
urlstringA URL to the Wikipedia page of the race.
raceIdstringThe race id.
raceNamestringThe race name.
circuitobjectThe circuit object.
circuitIdstringThe circuit id.
circuitNamestringThe circuit name.
countrystringThe circuit country.
citystringThe circuit city.
circuitLengthstringThe circuit length in kilometers.
lapRecordstringThe lap record for the circuit.
firstParticipationYearnumberThe year the circuit first hosted a Grand Prix.
cornersnumberThe number of corners on the circuit.
fastestLapDriverIdstringThe driverId of the fastest lap driver.
fastestLapTeamIdstringThe teamId of the fastest lap team.
fastestLapYearnumberThe year the fastest lap was set.
urlstringA URL to the Wikipedia page of the circuit.
qualyResultsarrayA list of qualy results objects returned from the API.
classificationIdstringThe qualy result id.
driverIdstringThe driver id.
teamIdstringThe team id.
q1stringThe best lap of the driver in q1.
q2stringThe best lap of the driver in q2.
q3stringThe best lap of the driver in q3.
driverobjectThe driver object.
driverIdstringThe driver id.
namestringThe driver's first name.
surnamestringThe driver's surname.
nationalitystringThe driver's nationality.
birthdaystringThe driver's birthday 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.
teamobjectThe team object.
teamIdstringThe team id.
teamNamestringThe team name.
nationalitystringThe team nationality.
firstAppareancenumberThe year the team first appeared in a Grand Prix.
constructorsChampionshipsnumberThe number of constructors championships the team has won.
driversChampionshipsnumberThe 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