This endpoint retrieves the results of the sprint race of the given round.
{ "api": "https://f1connectapi.vercel.app", "url": "https://f1connectapi.vercel.app/api/2024/5/sprint/race?limit=1", "limit": 1, "offset": 0, "total": 1, "season": "2024", "races": { "round": "5", "date": "2024-04-20", "time": "04:00:00Z", "url": "https://en.wikipedia.org/wiki/2024_Chinese_Grand_Prix", "raceId": "china_2024", "raceName": "Lenovo Chinese Grand Prix 2024", "circuit": { "circuitId": "shangai", "circuitName": "Shangai International Circuit", "country": "China", "city": "Shangai", "circuitLength": "5451km", "corners": 16, "firstParticipationYear": 2004, "lapRecord": "1:32:238", "fastestLapDriverId": "michael_schumacher", "fastestLapTeamId": "ferrari", "fastestLapYear": 2004, "url": "https://en.wikipedia.org/wiki/Shanghai_International_Circuit" }, "sprintRaceResults": [ { "sprintRaceId": 1, "driverId": "max_verstappen", "teamId": "red_bull", "position": 1, "gridPosition": 4, "points": 8, "driver": { "driverId": "max_verstappen", "number": 33, "name": "Max", "surname": "Verstappen", "shortName": "VER", "url": "https://en.wikipedia.org/wiki/Max_Verstappen", "nationality": "Netherlands", "birthday": "30/09/1997" }, "team": { "teamId": "red_bull", "teamName": "Red Bull Racing", "teamNationality": "Austria", "firstAppeareance": 2005, "constructorsChampionships": 6, "driversChampionships": 8, "url": "https://en.wikipedia.org/wiki/Red_Bull_Racing" } } ] } }
Field | Type | Description |
---|---|---|
round | string | The race round of the championship. |
date | string | The race date in format YYYY-MM-DD. |
time | string | The race 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. |
sprintRaceResults | array | A list of race results objects returned from the API. |
sprintRaceId | string | The ID of the sprint race. |
driverId | string | The driver id. |
teamId | string | The team id. |
position | number | The finishing position of the driver in the race. |
points | number | The grid position of the driver. |
grid | number | The finishing position of the driver in the race. |
time | string | The time of the driver in the race. |
fastLap | string | null | Fast lap of the driver in the race. |
retired | string | null | If the driver is retired or not. |
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 |