> ## 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/competitions/{competition_id}/seasons/{season_id}/groups

> List group labels available for a competition season.

List the group labels available for a competition season.

## Endpoint

```text theme={null}
GET https://api.thestatsapi.com/api/football/competitions/{competition_id}/seasons/{season_id}/groups
```

Returns the groups present in the given competition and season pair, sorted A to L. This applies to competitions whose group stage is split across separate tournament rows, such as the FIFA World Cup, EURO, AFCON, and pre-2024 UEFA Champions League group stage. Competitions without groups return an empty array.

## Path parameters

| Name             | Type   | Required | Description                          |
| ---------------- | ------ | -------- | ------------------------------------ |
| `competition_id` | string | Yes      | Competition ID. Example: `comp_6107` |
| `season_id`      | string | Yes      | Season ID. Example: `sn_326766`      |

## Response

```json theme={null}
{
  "data": [
    {
      "group_label": "A",
      "name": "Group A"
    }
  ]
}
```

<Note>
  Pass a returned `group_label` value to endpoints that support the `group` query parameter, such as match search and season standings.
</Note>
