---
title: "List tournament free agents"
method: GET
path: "/tournaments/{identifier}/free-agents"
tags: ["Tournament Discovery"]
---

# List tournament free agents

`GET /tournaments/{identifier}/free-agents`

Returns the players currently AVAILABLE in the tournament free-agent pool, resolved by slug. Pass `viewerParticipantId` to have each agent stamped with whether that participant already has an open offer out to them; the id is re-authorized server-side and an unauthorized or stale value simply yields no stamps. A tournament you may not view answers 404. Requires tournaments.tournament_public:read.

## Path parameters

- `identifier` string, required — Tournament slug.

## Query parameters

- `viewerParticipantId` string — Participant ID whose open offers should be reflected in `viewerOfferStatus`. The caller must lead that participant's team and the participant must belong to this tournament, otherwise the field is null for every agent.

## Response `200`

The tournament free-agent pool.

- TournamentFreeAgentsResponse — The tournament free-agent pool.
  - `freeAgents` TournamentFreeAgent[], required — Free agents currently AVAILABLE in the pool.
    - `id` string, required — Free-agent row ID.
    - `userId` string, required — User ID of the free agent.
    - `username` string — Username.
    - `name` string — Display name.
    - `avatarUrl` string, nullable — Avatar image URL.
    - `note` string — Free-text note the agent supplied.
    - `createdAt` number, required — Pool join time (epoch milliseconds).
    - `viewerOfferStatus` 'PENDING', nullable, required — PENDING when `viewerParticipantId` was supplied AND authorized AND that participant has an open offer to this agent; null otherwise. An unauthorized or stale `viewerParticipantId` fails soft to null rather than erroring.
  - `count` integer, required — Number of free agents 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)
