> For the complete documentation index, see [llms.txt](https://docs.sportmonks.com/v2/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sportmonks.com/v2/formula-one-api/our-api/teams-1/get-season-race-results.md).

# Get Season Race Results

{% hint style="danger" %}
**This version of the API is deprecated. Please visit the** [**docs**](https://docs.sportmonks.com/v3/motorsport-api/) **of our brand new Motorsport API v3**&#x20;
{% endhint %}

### `GET` Driver Season Race Results

```
https://f1.sportmonks.com/api/v1.0/teams/{ID}/season/{seasonID}/results
```

| Endpoint details        |         |
| ----------------------- | ------- |
| Authorization           | API Key |
| Pagination              | NO      |
| Allowed nested includes | 10      |

#### Parameters

| Available parameters |                                                                                                                   |
| -------------------- | ----------------------------------------------------------------------------------------------------------------- |
| include              | Enrich the API with more data and/or nested includes. Can be used by adding `&include=` etc. to your request url. |

#### Include options

`results.track`

Includes are the cornerstone of our API and allow you to enrich and customize your requests. This flexibility is what distinguishes us from our competitors. &#x20;

#### Example response

{% tabs %}
{% tab title="Request" %}

```
https://f1.sportmonks.com/api/v1.0/teams/15/season/6/results
```

{% endtab %}

{% tab title="Response" %}

```javascript
   "data": {
        "id": 15,
        "name": "Red Bull Racing Honda",
        "engine": "Honda RA621H",
        "chassis": "RB16B",
        "color_code": "#0600ef",
        "base": "Milton Keynes, Great-Britain",
        "team_lead": "Christian Horner",
        "technical_lead": "Adrian Newey",
        "image_path": "https://cdn.sportmonks.com/images/f1/teams/redbull.png",
        "results": {
            "data": [
                {
                    "driver_id": 232402,
                    "team_id": 15,
                    "track_id": 26,
                    "season_id": 6,
                    "stage_id": 115320818,
                    "position": 1,
                    "driver_time": "2:02:34.598",
                    "driver_time_int": "2:02:34.598",
                    "best_lap_time": null,
                    "laps": 63,
                    "grid": null,
                    "pit": "2",
                    "retired": false,
                    "fasted_lap_time": null,
                    "fasted_lap": null,
                    "driver": {
                        "data": {
                            "id": 232402,
                            "team_id": 15,
                            "name": "Max Verstappen (NED)",
                            "short_name": "VER",
                            "number": 33,
                            "image_path": "https://cdn.sportmonks.com/images/f1/drivers/maxverstappen.png"
                        }
                    }
                },
                {
                    "driver_id": 232407,
                    "team_id": 15,
                    "track_id": 26,
                    "season_id": 6,
                    "stage_id": 115320818,
                    "position": 11,
                    "driver_time": "2:03:41.749",
                    "driver_time_int": "67.151s",
                    "best_lap_time": null,
                    "laps": 63,
                    "grid": null,
                    "pit": "2",
                    "retired": false,
                    "fasted_lap_time": null,
                    "fasted_lap": null,
                    "driver": {
                        "data": {
                            "id": 232407,
                            "team_id": 15,
                            "name": "Sergio Perez (MEX)",
                            "short_name": "PER",
                            "number": 11,
                            "image_path": "https://cdn.sportmonks.com/images/f1/drivers/sergioperez.png"
                        }
                    }
                },
                {
                    "driver_id": 232402,
                    "team_id": 15,
                    "track_id": 37,
                    "season_id": 6,
                    "stage_id": 115320825,
                    "position": 2,
                    "driver_time": "1:35:00.569",
                    "driver_time_int": "29.148s",
                    "best_lap_time": null,
                    "laps": 66,
                    "grid": null,
                    "pit": "4",
                    "retired": false,
                    "fasted_lap_time": null,
                    "fasted_lap": null,
                    "driver": {
                        "data": {
                            "id": 232402,
                            "team_id": 15,
                            "name": "Max Verstappen (NED)",
                            "short_name": "VER",
                            "number": 33,
                            "image_path": "https://cdn.sportmonks.com/images/f1/drivers/maxverstappen.png"
                        }
                    }
                },
```

{% endtab %}
{% endtabs %}

{% hint style="info" %}
Check this endpoint in Postman.\
&#x20;                                                             [![Run in Postman](https://run.pstmn.io/button.svg)](https://formulaone-postman.sportmonks.com/#dbfe5dc3-08d2-4c58-b105-4f43225b0792)
{% endhint %}
