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

> 22 endpoints for Aussie Rules match data: quarter scores, statistics, odds, and highlights

## Scoring Format

Aussie Rules uses four quarters. The `/scores` endpoint returns:

```json theme={null}
{
  "homeScore": { "period1": 24, "period2": 18, "period3": 21, "period4": 15, "current": 78 },
  "awayScore": { "period1": 15, "period2": 21, "period3": 12, "period4": 15, "current": 63 }
}
```

* `period1`–`period4` = points per quarter
* Scoring: goal = 6 points, behind = 1 point
* `current` = total points

## Match Endpoints (22)

All endpoints use base URL `https://v2.aussie-rules.sportsapipro.com`.

### Match Details

```bash theme={null}
GET /api/match/:matchId
```

Full match details including teams, quarter scores, tournament context.

### Scores

```bash theme={null}
GET /api/match/:matchId/scores
```

Quarter-by-quarter scores (Q1, Q2, Q3, Q4). Scores displayed as Goals.Behinds (Total).

### Lineups

```bash theme={null}
GET /api/match/:matchId/lineups
```

Starting 22 + interchange bench for both teams.

### Match Statistics

```bash theme={null}
GET /api/match/:matchId/statistics
```

Match stats: disposals, marks, tackles, clearances, inside 50s, contested possessions.

### Incidents

```bash theme={null}
GET /api/match/:matchId/incidents
```

Goals, behinds, free kicks, marks — key match events.

### Player Statistics

```bash theme={null}
GET /api/match/:matchId/player-statistics
GET /api/match/:matchId/player/:pid/statistics
```

All player stats or individual player stats in the match.

### Best Players & Award

```bash theme={null}
GET /api/match/:matchId/best-players
GET /api/match/:matchId/award
```

### Head-to-Head

```bash theme={null}
GET /api/match/:matchId/h2h
```

Historical head-to-head record between the two teams.

### Scoring Graph

```bash theme={null}
GET /api/match/:matchId/graph
```

Scoring progression throughout the match.

### Form & Streaks

```bash theme={null}
GET /api/match/:matchId/pregame-form
GET /api/match/:matchId/streaks
```

### Media & Highlights

```bash theme={null}
GET /api/match/:matchId/highlights
GET /api/match/:matchId/media
```

### Fan Predictions

```bash theme={null}
GET /api/match/:matchId/votes
```

### Broadcast Info

```bash theme={null}
GET /api/match/:matchId/channels
```

TV broadcast info (Fox Footy, Channel 7, etc.).

### Odds

```bash theme={null}
GET /api/match/:matchId/odds
GET /api/match/:matchId/odds/all
GET /api/match/:matchId/odds/pre-match
GET /api/match/:matchId/odds/live
GET /api/match/:matchId/winning-odds
```
