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

# Team Endpoints

> 14 endpoints for ice hockey team data: rosters, recent results, performance, and season statistics

### Get Team

```
GET /api/teams/{id}
```

Team details: name, arena, coach, founded year. **Example:** `GET /api/teams/3700` (Ottawa Senators)

### Team Logo

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

### Full Roster

```
GET /api/teams/{id}/players
```

Complete roster with positions: G (Goalie), D (Defense), LW/RW/C (Forwards).

### Recent Results

```
GET /api/teams/{id}/events/last/{page}
```

Paginated recent results (0-indexed).

### Upcoming Games

```
GET /api/teams/{id}/events/next/{page}
```

### Closest Game

```
GET /api/teams/{id}/near-events
```

### Competitions Entered

```
GET /api/teams/{id}/unique-tournaments
```

### Performance / Form

```
GET /api/teams/{id}/performance
```

Recent form and win/loss record.

### Team Media

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

### Featured Event

```
GET /api/teams/{id}/featured-event
```

Next big game.

### Player Statistics Seasons

```
GET /api/teams/{id}/player-statistics/seasons
```

### Standings Seasons

```
GET /api/teams/{id}/standings/seasons
```

### Team Statistics Seasons

```
GET /api/teams/{id}/team-statistics/seasons
```

### Team Season Statistics

```
GET /api/teams/{id}/tournament/{tid}/season/{sid}/statistics?type=overall
```
