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

# Match / Fight Endpoints

> 23 endpoints for MMA fight data: results, stats, odds, highlights, and round-by-round scoring

## Scoring Format

MMA uses round-by-round judge scoring. The `/scores` endpoint returns:

```json theme={null}
{
  "homeScore": { "period1": 10, "period2": 9, "period3": 10, "current": 1 },
  "awayScore": { "period1": 9, "period2": 10, "period3": 8, "current": 0 }
}
```

* `period1`+ = judge scores per round (10-point must system)
* `current` = 1 for winner, 0 for loser (after decision)
* Early finishes (KO/TKO/Sub) end the fight before all rounds are scored

***

### Fight Details

```
GET /api/mma/match/:matchId
```

Full fight details: fighters, result, method (KO/TKO/Sub/Decision), weight class.

### Round-by-Round Scores

```
GET /api/mma/match/:matchId/scores
```

Scorecard breakdown per round and per judge.

### Fighter Info (Lineups)

```
GET /api/mma/match/:matchId/lineups
```

### Fight Statistics

```
GET /api/mma/match/:matchId/statistics
```

Strikes landed/attempted, takedowns, submission attempts, control time.

### Incidents

```
GET /api/mma/match/:matchId/incidents
```

Round results, finishes, stoppages, and the method of victory.

### Player Statistics

```
GET /api/mma/match/:matchId/player-statistics
```

Detailed per-fighter stats in the fight.

### Individual Fighter Stats

```
GET /api/mma/match/:matchId/player/:pid/statistics
```

### Best Players

```
GET /api/mma/match/:matchId/best-players
```

Fight performance ratings.

### Award

```
GET /api/mma/match/:matchId/award
```

Fight of the Night / Performance of the Night bonus.

### Head to Head

```
GET /api/mma/match/:matchId/h2h
```

### Momentum Graph

```
GET /api/mma/match/:matchId/graph
```

Fight momentum graph showing control shifts across rounds.

### Pre-Game Form

```
GET /api/mma/match/:matchId/pregame-form
```

### Streaks

```
GET /api/mma/match/:matchId/streaks
```

### Highlights

```
GET /api/mma/match/:matchId/highlights
```

### Media

```
GET /api/mma/match/:matchId/media
```

### Fan Votes

```
GET /api/mma/match/:matchId/votes
```

### Venue

```
GET /api/mma/match/:matchId/venue
```

### Channels

```
GET /api/mma/match/:matchId/channels
```

Broadcast info (PPV, ESPN, etc.).

### Featured Odds

```
GET /api/mma/match/:matchId/odds
```

### All Odds

```
GET /api/mma/match/:matchId/odds/all
```

### Pre-Fight Odds

```
GET /api/mma/match/:matchId/odds/pre-match
```

### Live Odds

```
GET /api/mma/match/:matchId/odds/live
```

In-fight live odds (available during the event).

### Winning Odds

```
GET /api/mma/match/:matchId/winning-odds
```

Win probability.
