This endpoint retrieves details about a all the teams in the database. The active and the old teams.
{
"api": "https://f1connectapi.vercel.app",
"url": "https://f1connectapi.vercel.app/api/teams?limit=1&offset=70",
"limit": 1,
"offset": 70,
"total": 1,
"teams": [
{
"teamId": "ferrari",
"teamName": "Scuderia Ferrari",
"teamNationality": "Italy",
"firstAppeareance": 1950,
"constructorsChampionships": 16,
"driversChampionships": 15,
"url": "https://en.wikipedia.org/wiki/Scuderia_Ferrari"
}
]
}| Field | Type | Description |
|---|---|---|
| api | string | The base API URL for the F1 Connect service. |
| url | string | The URL used to fetch the teams 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 teams available in the dataset. |
| teams | array | A list of team objects returned from the API. |
| teamId | string | A unique identifier for the team. |
| teamName | string | The team name. |
| teamNationality | string | The team nationality. |
| firstAppeareance | 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 |