This endpoint retrieves drivers standings from the current season.
{ "api": "https://f1connectapi.vercel.app", "url": "https://f1connectapi.vercel.app/api/current/drivers-championship?limit=1&offset=0", "limit": 1, "total": 1, "season": 2024, "championshipId": "f1_2024", "drivers_championship": [ { "classificationId": 1, "driverId": "max_verstappen", "teamId": "red_bull", "points": 437, "position": 1, "wins": 9, "driver": { "name": "Max", "surname": "Verstappen", "nationality": "Netherlands", "birthday": "30/09/1997", "number": 33, "shortName": "VER", "url": "https://en.wikipedia.org/wiki/Max_Verstappen" }, "team": { "teamId": "red_bull", "teamName": "Red Bull Racing", "country": "Austria", "firstAppareance": 2005, "constructorsChampionships": 6, "driversChampionships": 8, "url": "https://en.wikipedia.org/wiki/Red_Bull_Racing" } } ] }
Field | Type | Description |
---|---|---|
api | string | The base API URL for the F1 Connect service. |
url | string | The URL used to fetch the drivers data with query parameters for limit and offset. |
limit | number | The number of results returned per request. |
offset | number | The offset used for pagination, i.e., the starting point for the result set. |
total | number | The total number of drivers available in the dataset. |
season | string | The season of the championship. |
championshipId | string | The championship id. |
drivers_championship | array | A list of drivers championship objects returned from the API. |
classificationId | number | The classification id. |
driverId | string | The driver id. |
teamId | string | The team id. |
points | number | The points scored by the driver. |
position | number | null | The position of the driver in the championship. |
wins | number | The number of wins for the driver. |
driver | object | The driver object. |
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. |
number | number | The driver's number. |
shortName | string | The driver's short name. |
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. |
country | string | The team country. |
firstAppareance | number | The year the team first appeared in the championship. |
constructorsChampionships | number | null | The number of constructors championships the team has won. |
driversChampionships | number | null | 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 |