---
title: "List organization teams"
method: GET
path: "/orgs/{identifier}/teams"
tags: ["Organizations"]
---

# List organization teams

`GET /orgs/{identifier}/teams`

Returns an organization's active teams, resolved by slug or organization ID. Readable when the organization is public or the API key owner is an active member - otherwise responds 403. Members see all active teams; non-members do not receive private or disabled teams. The full result set is returned in one response with a count - there is no pagination, limit, or guaranteed sort order. Requires orgs.profile:read.

## Path parameters

- `identifier` string, required — Organization slug or Convex organization ID.

## Response `200`

Organization teams.

- object — Envelope containing teams, count, and a response timestamp.
  - `teams` ApiTeamSummary[], required
    - `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.
  - `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)
