> ## 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

> List seasons for a competition, newest first.

List seasons for a competition.

## Endpoint

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

Returns all seasons for the competition, newest first. The season with `is_current: true` matches `current_season_id` on the competition detail response.

## Path parameters

| Name             | Type   | Required | Description          |
| ---------------- | ------ | -------- | -------------------- |
| `competition_id` | string | Yes      | Example: `comp_3039` |

## Response (200)

```json theme={null}
{
  "data": [
    {
      "id": "sn_6125938",
      "name": "Premier League 24/25",
      "year": "24/25",
      "start_year": 2024,
      "end_year": 2025,
      "is_current": true
    }
  ]
}
```

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