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

# Get match players

`GET /matches/{matchId}/players`

Returns participant-gated player rows for a match, including roster type and attendance state. 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 player rows.

- ApiMatchPlayersResponse — SP-2 match player rows response.
  - `matchId` string, required
  - `players` ApiMatchPlayer[], required
    - `id` string, required
    - `userId` string, required
    - `teamId` string, required
    - `username` string, nullable, required
    - `name` string, nullable, required
    - `avatarUrl` string, nullable
    - `rosterType` 'ACTIVE' | 'BENCH', required
    - `attendanceStatus` 'ATTENDING' | 'NOT_ATTENDING' | 'TENTATIVE', required
    - `isCheckedIn` boolean, required
    - `checkedInAt` string, nullable, required
  - `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)
