---
title: "Gets all the teams with their subscription status, grants, and member counts."
method: GET
path: "/admin/team/list"
tags: ["admin"]
---

# Gets all the teams with their subscription status, grants, and member counts.

`GET /admin/team/list`

Lists teams in the system along with their subscription information, credit grants, and member counts.
Supports optional pagination via limit and offset query parameters.

## Query parameters

- `limit` integer, nullable
- `offset` integer, nullable

## Response `200`

- TeamListResponse[]
  - `created_at` string, date-time, required
  - `description` string, nullable
  - `id` string, uuid, required
  - `name` string, required
  - `pipedream_project_id` string, nullable
  - `sandbox_provider` string, nullable
  - `slack_team_icon` string, nullable
  - `slack_team_id` string, nullable
  - `slack_team_name` string, nullable
  - `teams_app_id` string, nullable
  - `teams_service_url` string, nullable
  - `teams_tenant_id` string, nullable
  - `updated_at` string, date-time, required
  - `grants` CreditGrant[], required
    - `amount` integer, required
    - `amount_remaining` integer, required
    - `created_at` string, date-time, required
    - `expires_at` string, date-time, nullable
    - `id` string, uuid, required
    - `source_ref` string, nullable
    - `source_type` string, required
    - `starts_at` string, date-time, nullable
    - `team_id` string, uuid, required
    - `updated_at` string, date-time, required
  - `member_count` integer, required
  - `subscription` TeamSubscriptionInfo, required
    - `has_active_subscription` boolean, required
    - `is_trial` boolean, required
    - `remaining_credits` integer, required
    - `subscription_tier` 'free' | 'free_trial' | 'pro' | 'team' | 'enterprise', required — Represents the different subscription tiers available
    - `trial_expires_at` string, date-time, nullable

---

[API](https://skmtc.net/structifyai/apis/structify.md) · [All operations](https://skmtc.net/structifyai/apis/structify/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/structifyai/structify/versions/1364930b6980/schema)
