---
title: "List user trophies"
method: GET
path: "/users/{identifier}/trophies"
tags: ["Players"]
---

# List user trophies

`GET /users/{identifier}/trophies`

Returns every trophy awarded to the user, sorted newest first by awardedAt, as an unpaginated list with a count (no cursor or limit). The identifier is a username or Convex user ID. Visible only when the target profile is effectively public, or when the profile belongs to the API key owner (self-view is always treated as public); a non-self limited or private profile returns 403. An unknown or banned user returns 404. Event linkage fields such as matchId and tournamentId are omitted. Requires users.profile:read.

## Path parameters

- `identifier` string, required — Username or Convex user ID.

## Response `200`

User trophies.

- object — Envelope containing trophies, count, and a response timestamp.
  - `trophies` ApiUserTrophy[], required
    - `id` string, required — Trophy award ID.
    - `trophyId` string, required — Trophy definition ID.
    - `title` string, nullable
    - `description` string, nullable
    - `iconUrl` string, nullable
    - `rarity` string, nullable
    - `awardedAt` string, nullable, required — ISO 8601 timestamp.
  - `count` integer, required
  - `timestamp` string, required — ISO 8601 timestamp.

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