---
title: "List tournament staff"
method: GET
path: "/tournaments/{identifier}/staff"
tags: ["Tournament: Staff & Invites"]
---

# List tournament staff

`GET /tournaments/{identifier}/staff`

Returns the tournament's delegated staff, resolved by slug. The host is not included - host authority comes from the host record rather than a staff row, so an empty list means no delegated staff, not no organizers. Reading requires tournaments.tournament_admin:read on the key AND that the caller manages the tournament (host, tournament ADMIN, or tournament MODERATOR); adding and removing staff requires ADMIN. Tournament API access is gated at api_pro on the tournament HOST OWNER's personal developer plan. An organization holding a consumer subscription does not satisfy this - the developer plan ladder has no organization arm.

## Path parameters

- `identifier` string, required — Tournament slug.

## Response `200`

The tournament staff roster.

- TournamentStaffResponse — The tournament staff roster.
  - `staff` TournamentStaffMember[], required — Every tournamentStaff row on the tournament. The host is NOT listed here - host authority comes from the host record, not a staff row.
    - `id` string, required — Staff row ID.
    - `userId` string, required — Staff member's user ID.
    - `username` string — Username.
    - `name` string — Display name.
    - `avatarUrl` string, nullable — Avatar image URL.
    - `role` 'ADMIN' | 'MODERATOR', required — Tournament staff role.
    - `createdAt` number, required — Time the row was added (epoch milliseconds).
  - `count` integer, required — Number of staff rows returned.
  - `timestamp` string, required — Response generation time (ISO 8601).

## 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/versions/2ffe8fb53b7d/schema)
