> 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/stages/get-stage-by-id.md).

# Get Stage By ID

{% 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` Stage by ID

```
https://f1.sportmonks.com/api/v1.0/stages/{ID}
```

| 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

`season` `track`

{% hint style="success" %}
Results are included by default
{% endhint %}

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/stages/115320812?api_token={API_TOKEN}
```

{% endtab %}

{% tab title="Response" %}

```javascript
 "data": {
        "id": 115320812,
        "name": "First Qualification",
        "track_id": 3,
        "season_id": 6,
        "length": null,
        "city": "Losail",
        "distance": null,
        "total_laps": null,
        "laps_running": null,
        "fastest_lap": null,
        "time": {
            "status": "Finished",
            "starting_at": {
                "date_time": "2021-03-27 16:00:00",
                "date": "2021-03-27",
                "time": "16:00:00",
                "timestamp": 1616860800,
                "timezone": "UTC"
            }
        },
        "results": {
            "data": [
                {
                    "driver_id": 232402,
                    "team_id": 15,
                    "track_id": 3,
                    "season_id": 6,
                    "stage_id": 115320812,
                    "position": 1,
                    "driver_time": "1:30.499",
                    "driver_time_int": "1:30.499",
                    "best_lap_time": null,
                    "laps": 3,
                    "grid": null,
                    "pit": null,
                    "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": 2837148,
                    "team_id": 17,
                    "track_id": 3,
                    "season_id": 6,
                    "stage_id": 115320812,
                    "position": 2,
                    "driver_time": "1:30.607",
                    "driver_time_int": "0.108s",
                    "best_lap_time": null,
                    "laps": 3,
                    "grid": null,
                    "pit": null,
                    "retired": false,
                    "fasted_lap_time": null,
                    "fasted_lap": null,
                    "driver": {
                        "data": {
                            "id": 2837148,
                            "team_id": 17,
                            "name": "Yuki Tsunoda (JAP)",
                            "short_name": "TSU",
                            "number": 22,
                            "image_path": "https://cdn.sportmonks.com/images/f1/drivers/yukitsunoda.png"
                        }
                    }
                },
                {
                    "driver_id": 232394,
                    "team_id": 13,
                    "track_id": 3,
                    "season_id": 6,
                    "stage_id": 115320812,
                    "position": 3,
                    "driver_time": "1:30.617",
                    "driver_time_int": "0.118s",
                    "best_lap_time": null,
                    "laps": 6,
                    "grid": null,
                    "pit": null,
                    "retired": false,
                    "fasted_lap_time": null,
                    "fasted_lap": null,
                    "driver": {
                        "data": {
                            "id": 232394,
                            "team_id": 13,
                            "name": "Lewis Hamilton (ENG)",
                            "short_name": "HAM",
                            "number": 44,
                            "image_path": "https://cdn.sportmonks.com/images/f1/drivers/lewishamilton.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/#d24f51c7-0cfe-4bbb-a629-787a206c07fc)
{% endhint %}
