> ## 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 rugby match data: scores, lineups, incidents, statistics, and odds

## Scoring Format

Rugby uses two 40-minute halves. The `/scores` endpoint returns:

```json theme={null}
{
  "homeScore": { "period1": 14, "period2": 7, "current": 21 },
  "awayScore": { "period1": 6, "period2": 12, "current": 18 }
}
```

* `period1` = 1st half points, `period2` = 2nd half points
* `overtime` appears in knockout matches (2×10 min extra time)
* Scoring: try (5), conversion (2), penalty goal (3), drop goal (3)

***

### Match Details

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

### Half-by-Half Scores

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

### Starting XV & Bench

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

### Match Statistics

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

### Match Incidents

Tries, conversions, penalties, cards, substitutions.

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

### All Player Statistics

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

### Individual Player Stats

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

### Best Players

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

### Man of the Match

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

### Head-to-Head

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

### Scoring Progression

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

### Pre-Game Form

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

### Team Streaks

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

### Video Highlights

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

### Match Media

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

### Head Coaches

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

### Fan Predictions

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

### Stadium Info

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

### Referee Info

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

### TV Broadcast Info

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

### Injured / Unavailable Players

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

### Featured Odds

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

### All Odds Providers

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

### Pre-Game Odds

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

### Live Odds

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

### Win Probability

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