> ## Documentation Index
> Fetch the complete documentation index at: https://www.thestatsapi.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# GET /football/teams/{team_id}

> Retrieve details for a team, including country, stadium fields, and current competition context.

Get team details

## Endpoint

```text theme={null}
GET https://api.thestatsapi.com/api/football/teams/{team_id}
```

## Path parameters

| Name      | Type   | Required | Description        |
| --------- | ------ | -------- | ------------------ |
| `team_id` | string | Yes      | Example: `tm_0406` |

## Response (200)

```json theme={null}
{
  "data": {
    "id": "tm_0406",
    "name": "Liverpool",
    "short_name": "Man Utd",
    "country": "England",
    "primary_competition": {
      "id": "comp_3039",
      "name": "Premier League"
    },
    "stadium": {
      "name": "Anfield",
      "capacity": 61276,
      "city": "Liverpool"
    }
  }
}
```

<Note>
  This page is generated from the live API contract at `https://api.thestatsapi.com/llms.txt`.
</Note>
