---
title: "Get match detail"
method: GET
path: "/matches/{matchId}"
tags: ["Match Discovery"]
---

# Get match detail

`GET /matches/{matchId}`

Returns a participant-gated match detail projection. Lobby codes and raw match documents are intentionally omitted. Requires one of matches.user_matches:read, matches.team_matches:read, or matches.org_matches:read.

## Path parameters

- `matchId` string, required — Match ID.

## Response `200`

Match detail.

- ApiMatchDetailResponse — SP-2 match detail response.
  - `match` ApiMatchDetail, required — Participant-gated SP-2 match detail. Lobby codes are intentionally omitted.
    - `id` string, required
    - `status` 'PENDING' | 'ACCEPTED' | 'READY' | 'IN_PROGRESS' | 'COMPLETED' | 'CANCELLED' | 'DISPUTED' | 'FORFEITED', required — Lifecycle status of a match.
    - `publishStatus` string, required
    - `game` Game, required — Game definition.
      - `id` string, required — Game ID.
      - `nameKey` string, required — Game name key for i18n lookup.
    - `gameMode` string, required
    - `matchType` string, nullable
    - `platform` string, nullable
    - `region` string, nullable
    - `creatorTeam` ApiMatchTeam, required — Team summary embedded in SP-2 match reads.
      - `id` string, required — Team ID.
      - `name` string, required — Team name.
      - `tag` string, required — Team tag (short identifier).
      - `avatarUrl` string, nullable — Team avatar URL.
      - `score` integer, nullable
    - `acceptedTeam` ApiMatchTeam, required — Team summary embedded in SP-2 match reads.
      - `id` string, required — Team ID.
      - `name` string, required — Team name.
      - `tag` string, required — Team tag (short identifier).
      - `avatarUrl` string, nullable — Team avatar URL.
      - `score` integer, nullable
    - `challengedTeam` ApiMatchTeam — Team summary embedded in SP-2 match reads.
      - `id` string, required — Team ID.
      - `name` string, required — Team name.
      - `tag` string, required — Team tag (short identifier).
      - `avatarUrl` string, nullable — Team avatar URL.
      - `score` integer, nullable
    - `bestOf` integer, required
    - `teamSize` integer, required
    - `selectedMaps` string[], required
    - `selectedObjectives` string[], required
    - `winnerTeamId` string, nullable, required
    - `scheduledAt` string, nullable, required
    - `startedAt` string, nullable, required
    - `completedAt` string, nullable, required
    - `createdAt` string, nullable, required
    - `leagueId` string, nullable
    - `leagueSeasonId` string, nullable
  - `timestamp` string, required

## Other responses

- `401` — Missing or invalid API key.
- `403` — API key lacks the required permission.
- `404` — Resource not found.
- `429` — Rate limited.
- `500` — Internal server error.

---

[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)
