# Get Team By ID

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

### `GET` Team by ID

```
https://f1.sportmonks.com/api/v1.0/teams/{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

`drivers`

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

{% 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"
    },
```

{% 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 %}
