---
title: "List Teams"
method: GET
path: "/teams"
tags: ["teams"]
---

# List Teams

`GET /teams`

List all teams the authenticated user is a member of.

Returns teams sorted with member counts and user's role in each.

## Response `200`

Successful Response

- TeamListResponse — Response model for listing teams.
  - `success` boolean
  - `teams` TeamResponse[], required
    - `id` string, required
    - `name` string, required
    - `owner_id` string, required
    - `payment_plan` string, required
    - `router_enabled` boolean
    - `zero_data_retention` boolean
    - `created_at` string, required
    - `updated_at` string, required
    - `member_count` integer, nullable
    - `current_user_role` 'owner' | 'billing' | 'admin' | 'editor' | 'viewer' — Team member roles with hierarchical permissions. Wire DTO mirror of the ORM ``TeamRoleType`` enum. Used only for API request/response serialization; authorization decisions route through the ORM matrix (``database_tables.permissions``), never this enum.
    - `capabilities` object, nullable
  - `count` integer, required

---

[API](https://skmtc.net/pioneer/apis/brain-api.md) · [All operations](https://skmtc.net/pioneer/apis/brain-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/pioneer/brain-api/versions/31dfe831e079/schema)
