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

# List Teams

`GET /v3/teams`

Returns an array of team objects containing information about the Konnect Teams.

## Query parameters

- `page[size]` integer
- `page[number]` integer
- `filter` object
  - `name` LegacyStringFieldFilter — Filter using **one** of the following operators: `eq`, `contains`
    - `eq` string — The field exactly matches the provided value.
    - `contains` string — The field contains the provided value.
  - `labels` object

## Response `200`

A paginated list response for a collection of teams.

- object
  - `meta` PaginatedMeta — returns the pagination information
    - `page` PageMeta, required — Contains pagination query parameters and the total number of objects returned.
      - `number` number, required
      - `size` number, required
      - `total` number, required
  - `data` TeamResponse[]
    - `id` string, uuid, required — The team ID.
    - `name` string, required — The name of the team.
    - `description` string, nullable, required — The description of the team.
    - `system_team` boolean, required — Returns True if a user belongs to a `system_team`. System teams are teams that can manage Konnect objects, like "Organization Admin", or "Service"
    - `labels` Labels, required — Labels store metadata of an entity that can be used for filtering an entity list or for searching across entity types. Keys must be of length 1-63 characters, and cannot start with "kong", "konnect", "mesh", "kic", or "_".
    - `created_at` string, date-time, required — A Unix timestamp representation of team creation.
    - `updated_at` string, date-time, required — A Unix timestamp representation of the most recent change to the team object in Konnect.

## Other responses

- `400` — Bad Request
- `404` — Not Found

## Changes

- **2026-08-12** `fbe6ce110ba4` — 1 breaking, 8 warning, 1 info
  - the `data/items/` response's property type/format changed from `object`/`` to ``/`` for status `200`
  - for the `query` request parameter `filter`, the type/format of property `labels/additionalProperties/` was changed from `object`/`` to ``/``
  - removed the optional property `data/items/created_at` from the response with the `200` status
  - removed the optional property `data/items/description` from the response with the `200` status
  - …6 more
- **2025-10-23** `8ab3ec3ed301` — 1 warning
  - added the new `type` enum value to the `allOf[subschema #2]/invalid_parameters/items/oneOf[#/components/schemas/InvalidParameterStandard]/rule` response property for the response status `400`
- …earlier changes not shown

[Full history](https://skmtc.dev/kong/apis/konnect-api-go-sdk/changes/v3/teams/get.md)

---

[API](https://skmtc.dev/kong/apis/konnect-api-go-sdk.md) · [All operations](https://skmtc.dev/kong/apis/konnect-api-go-sdk/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/kong/konnect-api-go-sdk/revisions/7d3c634668f8/schema)
