---
title: "Get a team profile"
method: GET
path: "/teams/{identifier}"
tags: ["Teams"]
---

# Get a team profile

`GET /teams/{identifier}`

Returns an API-safe team profile projection. Active team members are treated as public visibility for their own team. Requires teams.profile:read.

## Path parameters

- `identifier` string, required — Team slug or Convex team ID.

## Response `200`

Team profile.

- object — Envelope containing team plus a response timestamp.
  - `team` ApiTeamProfile, required — API-safe team profile.
    - `id` string, required — Team ID.
    - `slug` string, nullable
    - `name` string, required — Team name.
    - `tag` string, nullable
    - `avatarUrl` string, nullable
    - `visibility` 'public' | 'limited' | 'private' — Public profile visibility setting.
    - `description` string, nullable
    - `bannerUrl` string, nullable
    - `gameId` string, nullable
    - `organizationId` string, nullable
    - `isMember` boolean, required
    - `memberCount` integer
    - `wins` integer
    - `losses` integer
    - `draws` integer
    - `matchesPlayed` integer
    - `experience` number
    - `createdAt` string, nullable, required — ISO 8601 timestamp.
  - `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/revisions/2ffe8fb53b7d/schema)
