---
title: "List pending tournament applications"
method: GET
path: "/tournaments/{identifier}/applications"
tags: ["Tournament: Registration"]
---

# List pending tournament applications

`GET /tournaments/{identifier}/applications`

Returns the teams awaiting organizer review, resolved by slug. Requires tournaments.tournament_admin:read on the key AND that the caller manages the tournament - the host, a tournament ADMIN, or a tournament MODERATOR. A caller without that standing answers 403; a tournament they cannot view at all answers 404. 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`

Pending applications.

- TournamentApplicationsResponse — Pending tournament applications.
  - `applications` TournamentApplication[], required — Participant rows in PENDING status only. Approved, denied, withdrawn, and disqualified entries are not applications and appear on the participants endpoint instead.
    - `id` string, required — Participant ID of the pending application.
    - `teamId` string, required — Applying team's ID.
    - `teamName` string, required — Applying team's display name.
    - `teamAvatarUrl` string, nullable — Applying team's avatar URL.
    - `appliedByUserId` string — User who submitted the application, when recorded.
    - `registeredAt` number, required — Application time (epoch milliseconds).
  - `count` integer, required — Number of applications 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/revisions/2ffe8fb53b7d/schema)
