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

# List teams

> List all teams in the organization.



## OpenAPI

````yaml /openapi.yaml get /teams/{organizationId}
openapi: 3.1.0
info:
  title: SquadVault Public API
  version: 1.0.0
  description: >
    Organization-scoped Public API for teams, players, documents, tryout
    applications, and uploads.

    Base path is `/v1`. Authenticate with an organization API key in the
    `x-api-key` header.


    The key is scoped to one organization. List and create calls still require
    that organization ID

    in the path, query, or body, and it must match the key. Tryout get, update,
    and convert-to-player

    always require `organizationId` (query on GET, JSON body on PATCH/POST). Get
    team/player by ID

    uses `/teams/{organizationId}/{teamId}` and
    `/players/{organizationId}/{playerId}`.

    Team, player, and document update/delete resolve the organization from the
    resource ID.
  contact:
    name: SquadVault Support
    email: hello@squadvault.xyz
    url: https://squadvault.xyz
servers:
  - url: https://api.squadvault.xyz/v1
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Teams
  - name: Players
  - name: Documents
  - name: Tryout Applications
  - name: Uploads
paths:
  /teams/{organizationId}:
    get:
      tags:
        - Teams
      summary: List teams
      description: List all teams in the organization.
      operationId: listTeams
      parameters:
        - $ref: '#/components/parameters/OrganizationIdPath'
        - $ref: '#/components/parameters/Limit'
        - $ref: '#/components/parameters/Offset'
        - name: view
          in: query
          schema:
            type: string
            enum:
              - summary
              - full
            default: summary
          description: Use `full` to include player roster details.
      responses:
        '200':
          description: Paginated team list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TeamListResponse'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
components:
  parameters:
    OrganizationIdPath:
      name: organizationId
      in: path
      required: true
      schema:
        type: string
      description: Organization ID. Must match the API key's organization.
    Limit:
      name: limit
      in: query
      schema:
        type: integer
        minimum: 1
        maximum: 250
        default: 50
    Offset:
      name: offset
      in: query
      schema:
        type: integer
        minimum: 0
        default: 0
  schemas:
    TeamListResponse:
      type: object
      required:
        - items
        - pagination
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/Team'
        pagination:
          $ref: '#/components/schemas/Pagination'
    Team:
      type: object
      properties:
        id:
          type: string
        organizationId:
          type: string
        name:
          type: string
        description:
          type:
            - string
            - 'null'
        image:
          type:
            - string
            - 'null'
        game:
          oneOf:
            - $ref: '#/components/schemas/Game'
            - type: 'null'
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
        playerCount:
          type: integer
        players:
          type: array
          items:
            $ref: '#/components/schemas/TeamPlayerSummary'
    Pagination:
      type: object
      required:
        - hasMore
        - limit
        - offset
        - total
      properties:
        hasMore:
          type: boolean
        limit:
          type: integer
        offset:
          type: integer
        total:
          type: integer
    Error:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          description: Machine-readable error code
    Game:
      type: string
      enum:
        - cs
        - valorant
        - overwatch
        - fortnite
        - minecraft
        - rocket-league
        - league
        - other
    TeamPlayerSummary:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        role:
          type:
            - string
            - 'null'
        mainGame:
          oneOf:
            - $ref: '#/components/schemas/Game'
            - type: 'null'
        nationality:
          type:
            - string
            - 'null'
          description: ISO 3166-1 alpha-2 country code (lowercase). United Kingdom is `uk`.
          example: de
        teamRole:
          $ref: '#/components/schemas/TeamRosterRole'
        gamerTags:
          type: array
          items:
            $ref: '#/components/schemas/GamerTag'
    TeamRosterRole:
      type: string
      enum:
        - captain
        - assistant_captain
        - player
        - substitute
        - analyst
        - coach
    GamerTag:
      type: object
      properties:
        id:
          type: string
        organizationId:
          type: string
        playerId:
          type: string
        game:
          $ref: '#/components/schemas/Game'
        gamerTag:
          type: string
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
  responses:
    Unauthorized:
      description: Missing or invalid credentials
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          examples:
            unauthorized:
              value:
                error: unauthorized
            invalidApiKey:
              value:
                error: invalidApiKey
    Forbidden:
      description: Valid credentials but missing permission or feature
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          examples:
            forbidden:
              value:
                error: forbidden
            featureNotAvailable:
              value:
                error: featureNotAvailable
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Organization API key from Settings → API keys.

````