---
title: "Read all map scores for a match"
method: GET
path: "/game/matches/{matchId}/scores"
tags: ["Game: Scores"]
---

# Read all map scores for a match

`GET /game/matches/{matchId}/scores`

Returns every recorded map score plus the aggregate series tally. Requires the game.scores:write OR game.lifecycle:read permission.

## Path parameters

- `matchId` string, required — Match ID.

## Response `200`

All map scores plus the aggregate series tally.

- GameScoresResponse — All map scores for a match plus the aggregate series tally.
  - `scores` GameScore[], required — All recorded map scores for the match.
    - `mapIndex` integer, required — Zero-based index of the map within the series.
    - `mapId` string, required — Identifier of the map that was played.
    - `creatorTeamScore` integer, required — Score for the creator team.
    - `opponentTeamScore` integer, required — Score for the opponent (accepted) team.
    - `scoreStatus` string, required — Confirmation state: "CONFIRMED" or "PENDING".
    - `playerStats` object, nullable, required — Per-player stats keyed by user ID, or null when none recorded.
    - `submittedAt` string, nullable, required — When the score was submitted (ISO 8601).
    - `confirmedAt` string, nullable, required — When the score was confirmed (ISO 8601).
  - `seriesScore` GameSeriesScore, required — Aggregate map-win tally across the series.
    - `creatorMapWins` integer, required — Confirmed map wins for the creator team.
    - `opponentMapWins` integer, required — Confirmed map wins for the opponent team.
  - `timestamp` string, required — Server response time (ISO 8601).

## Other responses

- `401` — Missing or invalid API key.
- `403` — API key lacks the required permission.
- `404` — Resource not found.

---

[API](https://skmtc.net/teambattles/apis/teambattles-api.md) · [All operations](https://skmtc.net/teambattles/apis/teambattles-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/teambattles/teambattles-api/revisions/2ffe8fb53b7d/schema)
