> ## 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 / Fighter Endpoints

> 11 endpoints for MMA fighter data: profiles, fight history, and promotion stats

<Note>
  In MMA (like tennis), each fighter IS a "team" entity. Use these endpoints for fighter profiles, fight history, and stats.
</Note>

### Fighter Details

```
GET /api/mma/teams/:id
```

Fighter profile: name, record, weight class, country. **Example:** `GET /api/mma/teams/470979` (Adrian Bartosiński)

### Fighter Photo

```
GET /api/mma/teams/:id/image
```

### Associated Fighters

```
GET /api/mma/teams/:id/players
```

### Recent Fights

```
GET /api/mma/teams/:id/events/last/:page
```

Paginated recent results (0-indexed).

### Upcoming Fights

```
GET /api/mma/teams/:id/events/next/:page
```

### Next Scheduled Fight

```
GET /api/mma/teams/:id/near-events
```

### Promotions Fought In

```
GET /api/mma/teams/:id/unique-tournaments
```

### Fighter Media

```
GET /api/mma/teams/:id/media
```

### Next Big Fight

```
GET /api/mma/teams/:id/featured-event
```

### Stat Seasons

```
GET /api/mma/teams/:id/player-statistics/seasons
```

### Promotion Stats

```
GET /api/mma/teams/:id/tournament/:tid/season/:sid/statistics?type=overall
```
