This endpoint retrieves the results of the latest free practice 1 of the current season.
{ "api": "https://f1connectapi.vercel.app", "url": "https://f1connectapi.vercel.app/api/current/last/fp1?limit=1", "limit": 1, "offset": 0, "total": 20, "season": 2024, "races": { "round": 24, "fp1Date": "2024-12-06", "fp1Time": "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" }, "fp1Results": [ { "fp1Id": 481, "driverId": "leclerc", "teamId": "ferrari", "time": "1:24.321", "driver": { "driverId": "leclerc", "name": "Charles", "surname": "Leclerc", "nationality": "Monaco", "number": 16, "shortName": "LEC", "birthday": "16/10/1997", "url": "https://en.wikipedia.org/wiki/Charles_Leclerc" }, "team": { "teamId": "ferrari", "teamName": "Scuderia Ferrari", "nationality": "Italy", "firstAppareance": 1950, "constructorsChampionships": 16, "driversChampionships": 15, "url": "https://en.wikipedia.org/wiki/Scuderia_Ferrari" } } ] } }
Field | Type | Description |
---|---|---|
round | string | The race round of the championship. |
fp1Date | string | The fp1 date in format YYYY-MM-DD. |
fp1Time | string | The fp1 time in format HH:MM:SS. |
url | string | A URL to the Wikipedia page of the race. |
raceId | string | The race id. |
raceName | string | The race name. |
circuit | object | The circuit object. |
circuitId | string | The circuit id. |
circuitName | string | The circuit name. |
country | string | The circuit country. |
city | string | The circuit city. |
circuitLength | string | The circuit length in kilometers. |
lapRecord | string | The lap record for the circuit. |
firstParticipationYear | number | The year the circuit first hosted a Grand Prix. |
corners | number | The number of corners on the circuit. |
fastestLapDriverId | string | The driverId of the fastest lap driver. |
fastestLapTeamId | string | The teamId of the fastest lap team. |
fastestLapYear | number | The year the fastest lap was set. |
url | string | A URL to the Wikipedia page of the circuit. |
fp1Results | array | A list of fp1 results objects returned from the API. |
fp1Id | string | The fp1 result id. |
driverId | string | The driver id. |
teamId | string | The team id. |
time | string | The best lap of the driver session. |
driver | object | The driver object. |
driverId | string | The driver id. |
name | string | The driver's first name. |
surname | string | The driver's surname. |
nationality | string | The driver's nationality. |
birthday | string | The driver's birthday in DD/MM/YYYY format. |
number | number | The driver's racing number. |
shortName | string | The driver's abbreviated name, often used in standings or graphics. |
url | string | A URL to the Wikipedia page of the driver. |
team | object | The team object. |
teamId | string | The team id. |
teamName | string | The team name. |
nationality | string | The team nationality. |
firstAppareance | number | The year the team first appeared in a Grand Prix. |
constructorsChampionships | number | The number of constructors championships the team has won. |
driversChampionships | number | The number of drivers championships the team has won. |
url | string | A URL to the Wikipedia page of the team. |
Param | Default | Data |
---|---|---|
limit | 30 | Number of records returned per request. |
offset | 0 | Number of records skipped before starting to fetch. |
Status | Description |
---|---|
200 | Successful request |
404 | Resource not found |
500 | Internal server error |