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

# Tournament Endpoints

> 12 endpoints for ice hockey tournament data: NHL standings (7 groups: divisions + conferences), stat types, events, and more

## Tournament Info

### Get Tournament

```
GET /api/tournament/{id}/info
```

Tournament details (name, category, logo). **Example:** `GET /api/tournament/234/info` (NHL)

### Seasons

```
GET /api/tournament/{id}/seasons
```

All seasons for a tournament. Use the returned `seasonId` for season-specific endpoints.

### Tournament Image

```
GET /api/tournament/{id}/image
```

Tournament logo URL.

### Featured Events

```
GET /api/tournament/{id}/featured-events
```

Highlighted upcoming games.

### Tournament Media

```
GET /api/tournament/{id}/media
```

Tournament media content.

## Season-Specific Endpoints

All require `tournamentId` + `seasonId`. Example: `/api/tournament/234/season/678476/standings`

### Standings

```
GET /api/tournament/{id}/season/{sid}/standings?type=total
```

Division/conference standings. NHL returns **7 groups**: Eastern Conference, Western Conference, Atlantic Division, Metropolitan Division, Central Division, Pacific Division, plus Overall.

### Player Statistics Types

```
GET /api/tournament/{id}/season/{sid}/player-statistics/types
```

Available player stat categories.

### Team Statistics Types

```
GET /api/tournament/{id}/season/{sid}/team-statistics/types
```

Available team stat categories.

### All Season Matches

```
GET /api/tournament/{id}/season/{sid}/team-events?type=total
```

### Round Events

```
GET /api/tournament/{id}/season/{sid}/events/round/{round}
```

### Recent Results

```
GET /api/tournament/{id}/season/{sid}/events/last/{page}
```

Paginated (0-indexed).

### Venues / Arenas

```
GET /api/tournament/{id}/season/{sid}/venues
```
