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

# List organization teams

`GET /api/teams`

Returns a paginated list of teams that belong to the organization the API key is scoped to, ordered by name. Optionally filters by a case-insensitive team name substring match or by archived flag. Requires the `workspace:read` scope.

## Query parameters

- `isArchived` boolean
- `teamName` string[]
- `page` number
- `pageSize` number

## Response `200`

A page of teams in the organization.

- object
  - `results` TeamDto[], required
    - `id` string, required — Unique identifier of the team.
    - `teamName` string, required — Name of the team.
  - `pagination` PaginationMetaDto, required
    - `totalPages` number, required — Total number of pages available for the current page size.
    - `currentPage` number, required — The 1-based page number of this response.
    - `totalCount` number, required — Total number of items matching the query across all pages.
    - `pageSize` number, required — Maximum number of items returned per page.

## Other responses

- `400` — Invalid filter/pagination parameters.
- `401` — Missing or invalid API key.
- `403` — The API key lacks the required scope, or the organization plan does not include public API access.
- `429` — Rate limit exceeded for the organization. See the X-RateLimit-* and Retry-After response headers.
- `500` — An unexpected error occurred.

---

[API](https://skmtc.dev/vizcom/apis/vizcom-api.md) · [All operations](https://skmtc.dev/vizcom/apis/vizcom-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/vizcom/vizcom-api/revisions/bfa4f498f985/schema)
