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

> 26 endpoints for volleyball match data: scores, lineups, statistics, odds, and more

## Scoring Format

Volleyball is played in sets (best of 5). The `/scores` endpoint returns:

```json theme={null}
{
  "homeScore": { "period1": 25, "period2": 21, "period3": 25, "current": 2 },
  "awayScore": { "period1": 23, "period2": 25, "period3": 20, "current": 1 }
}
```

* `period1`–`period5` = points scored in each set
* Sets 1–4 are played to 25 (win by 2), set 5 is played to 15
* `current` = sets won (match won at 3 sets)

***

### Match Details

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

Full match details including teams, scores, status, and venue.

### Scores

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

Set-by-set scores (best of 3 or 5).

### Lineups

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

Starting six and bench players.

### Statistics

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

Match stats: kills, blocks, aces, digs, serve %.

### Incidents

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

Set results, timeouts, substitutions.

### Player Statistics

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

All player stats for the match.

### Individual Player Stats

```
GET /api/match/:matchId/player/:playerId/statistics
```

### Best Players

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

Top performers of the match.

### Award / MVP

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

### Head to Head

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

### Scoring Graph

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

Scoring progression through the match.

### Pre-Game Form

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

### Streaks

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

### Highlights

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

### Media

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

### Managers / Coaches

```
GET /api/match/:matchId/managers
```

### Fan Votes

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

### Venue

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

### Referee

```
GET /api/match/:matchId/referee
```

### TV Channels

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

### Missing Players

```
GET /api/match/:matchId/missing-players
```

### Featured Odds

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

### All Odds

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

### Pre-Match Odds

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

### Live Odds

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

### Winning Odds

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

Win probability.
