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

# List Teams

> List the teams the authenticated user belongs to.



## OpenAPI

````yaml GET /teams
openapi: 3.1.0
info:
  title: Faces API
  version: '1.0'
  description: >-
    Faces API for creating and managing presentations. Generate presentations
    from prompts, or read and write individual slides. Each slide is a React
    component (face.tsx) with content blocks (face.content.json) and editor
    controls (face.controls.json).
servers:
  - url: https://faces.app/api/v1
    description: API v1
security:
  - bearerAuth: []
paths:
  /teams:
    get:
      tags:
        - Teams
      summary: List teams
      description: >-
        List the teams the authenticated user belongs to. The personal team is
        flagged with isPersonal: true and is the default team for new projects
        when no team context is supplied.
      operationId: listTeams
      responses:
        '200':
          description: Team list
          content:
            application/json:
              schema:
                type: object
                properties:
                  teams:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          description: The team ID.
                        slug:
                          type: string
                          description: The team slug (subdomain).
                        name:
                          type: string
                        isPersonal:
                          type: boolean
                          description: True for the user's auto-created personal team.
                        role:
                          type: string
                          enum:
                            - OWNER
                            - MEMBER
                          description: The authenticated user's role in this team.
                      required:
                        - id
                        - slug
                        - name
                        - isPersonal
                        - role
                required:
                  - teams
        '401':
          description: Authentication required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - bearerAuth: []
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: string
        hint:
          type: string
      required:
        - error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key with "faces_" prefix. Create one at Settings > Developers.

````