GET api/current/last/fp3

Try it

This endpoint retrieves the results of the latest free practice 3 of the current season.

Example Response

{
  "api": "https://f1connectapi.vercel.app",
  "url": "https://f1connectapi.vercel.app/api/current/last/fp3?limit=1",
  "limit": 1,
  "offset": 0,
  "total": 1,
  "season": 2024,
  "races": {
    "round": 24,
    "fp3Date": "2024-12-06",
    "fp3Time": "09:30:00Z",
    "url": "https://en.wikipedia.org/wiki/2024_Abu_Dhabi_Grand_Prix",
    "raceId": "abu_dhabi_2024",
    "raceName": "Etihad Airways Abu Dhabi Grand Prix 2024",
    "circuit": {
      "circuitId": "yas_marina",
      "circuitName": "Yas Marina Circuit",
      "country": "Abu Dhabi",
      "city": "Yas Island",
      "circuitLength": "5281km",
      "lapRecord": "1:26:103",
      "firstParticipationYear": 2009,
      "corners": 16,
      "fastestLapDriverId": "max_verstappen",
      "fastestLapTeamId": "red_bull",
      "fastestLapYear": 2021,
      "url": "https://en.wikipedia.org/wiki/Yas_Marina_Circuit"
    },
    "fp3Results": [
      {
        "fp3Id": 360,
        "driverId": "piastri",
        "teamId": "mclaren",
        "time": "1:23.433",
        "driver": {
          "driverId": "piastri",
          "name": "Oscar",
          "surname": "Piastri",
          "nationality": "Australia",
          "number": 81,
          "shortName": "PIA",
          "birthday": "06/04/2001",
          "url": "https://en.wikipedia.org/wiki/Oscar_Piastri"
        },
        "team": {
          "teamId": "mclaren",
          "teamName": "McLaren Formula 1 Team",
          "nationality": "Great Britain",
          "firstAppareance": 1966,
          "constructorsChampionships": 9,
          "driversChampionships": 12,
          "url": "https://en.wikipedia.org/wiki/McLaren"
        }
      }
    ]
  }
}

Response Types

FieldTypeDescription
roundstringThe race round of the championship.
fp3DatestringThe fp3 date in format YYYY-MM-DD.
fp3TimestringThe fp3 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.
fp3ResultsarrayA list of fp3 results objects returned from the API.
fp3IdstringThe fp3 result id.
driverIdstringThe driver id.
teamIdstringThe team id.
timestringThe best lap of the driver session.
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