> ## Documentation Index
> Fetch the complete documentation index at: https://docs.staging.alpic.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List teams

> List all teams for the authenticated user



## OpenAPI

````yaml https://api.alpic.ai/openapi.json get /v1/teams
openapi: 3.1.1
info:
  title: Alpic API
  version: 1.0.0
servers:
  - url: https://api.alpic.ai
security:
  - bearerAuth: []
paths:
  /v1/teams:
    get:
      tags:
        - teams
      summary: List teams
      description: List all teams for the authenticated user
      operationId: teams.list.v1
      responses:
        '200':
          description: The list of teams
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                    name:
                      type: string
                    createdAt:
                      type: string
                      format: date-time
                      x-native-type: date
                    hasStripeAccount:
                      type: boolean
                  required:
                    - id
                    - name
                    - createdAt
                    - hasStripeAccount
components:
  securitySchemes:
    bearerAuth:
      type: http
      description: >-
        Bearer token for authentication. Use an API key from the API Keys page
        in team settings, or an OAuth access token.
      scheme: bearer

````