> ## 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}/standings

> List competitions and seasons where a team has standings data.

Competitions and seasons where this team has standings.

## Endpoint

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

Returns one entry per competition where the team appears in standings, with seasons nested inside. Clients can then call the competition standings endpoint to fetch the actual table.

## Path parameters

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

## Response (200)

```json theme={null}
{
  "data": [
    {
      "competition": {
        "id": "comp_7",
        "name": "UEFA Champions League"
      },
      "seasons": [
        {
          "id": "sn_3057848",
          "name": "UEFA Champions League 22/23",
          "group_label": "A"
        }
      ]
    }
  ]
}
```

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