> ## 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 American Football V2 match/game endpoints

# Match / Game Endpoints

All match endpoints use the format `/api/match/:matchId/...`

## Scoring Format

American football scores by quarter. The `/scores` endpoint returns:

```json theme={null}
{
  "homeScore": { "period1": 7, "period2": 10, "period3": 7, "period4": 0, "overtime": 0, "current": 24 },
  "awayScore": { "period1": 3, "period2": 7, "period3": 0, "period4": 7, "overtime": 0, "current": 17 }
}
```

* `period1`–`period4` = Q1–Q4 points
* `overtime` appears only when the game goes to OT
* `current` = total points

## Endpoints

| Method | Endpoint                                     | Description                           |
| ------ | -------------------------------------------- | ------------------------------------- |
| GET    | `/api/match/:matchId`                        | Full game details                     |
| GET    | `/api/match/:matchId/scores`                 | Quarter-by-quarter scores             |
| GET    | `/api/match/:matchId/lineups`                | Starting lineup / depth chart         |
| GET    | `/api/match/:matchId/statistics`             | Game stats (yards, TDs, turnovers)    |
| GET    | `/api/match/:matchId/incidents`              | Touchdowns, FGs, turnovers, penalties |
| GET    | `/api/match/:matchId/player-statistics`      | All player stats                      |
| GET    | `/api/match/:matchId/player/:pid/statistics` | Individual player stats               |
| GET    | `/api/match/:matchId/best-players`           | Top performers                        |
| GET    | `/api/match/:matchId/award`                  | Game MVP                              |
| GET    | `/api/match/:matchId/h2h`                    | Head-to-head history                  |
| GET    | `/api/match/:matchId/graph`                  | Scoring progression                   |
| GET    | `/api/match/:matchId/pregame-form`           | Recent form                           |
| GET    | `/api/match/:matchId/streaks`                | Team streaks                          |
| GET    | `/api/match/:matchId/highlights`             | Video highlights                      |
| GET    | `/api/match/:matchId/media`                  | Game media                            |
| GET    | `/api/match/:matchId/managers`               | Head coaches                          |
| GET    | `/api/match/:matchId/votes`                  | Fan predictions                       |
| GET    | `/api/match/:matchId/venue`                  | Stadium info                          |
| GET    | `/api/match/:matchId/referee`                | Referee crew info                     |
| GET    | `/api/match/:matchId/channels`               | TV broadcast info (ESPN, FOX, etc.)   |
| GET    | `/api/match/:matchId/missing-players`        | Injured/inactive players              |
| GET    | `/api/match/:matchId/odds`                   | Featured odds (spread, O/U, ML)       |
| GET    | `/api/match/:matchId/odds/all`               | All odds providers                    |
| GET    | `/api/match/:matchId/odds/pre-match`         | Pre-game odds                         |
| GET    | `/api/match/:matchId/odds/live`              | Live odds                             |
| GET    | `/api/match/:matchId/winning-odds`           | Win probability                       |
