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

# List team integrations

> Requires a team API key (`bzy_team_*`) or internal auth. Project API keys are rejected.



## OpenAPI

````yaml /openapi/v1.json get /teams/{id}/integrations
openapi: 3.1.0
info:
  title: Bugzy API
  description: >-
    Programmatic access to Bugzy's QA automation capabilities. Trigger test
    runs, query results, manage schedules, and configure event triggers.
  version: 1.0.0
  contact:
    name: Bugzy Support
    url: https://www.bugzy.ai
servers:
  - url: https://bugzy.ai/api/v1
    description: Production
security:
  - bearerAuth: []
paths:
  /teams/{id}/integrations:
    get:
      tags:
        - Team Integrations
      summary: List team integrations
      description: >-
        Requires a team API key (`bzy_team_*`) or internal auth. Project API
        keys are rejected.
      operationId: listTeamIntegrations
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
        - name: providers
          in: query
          schema:
            type: string
          description: Comma-separated provider filter
      responses:
        '200':
          description: List of connected team integrations
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Integration'
components:
  schemas:
    Integration:
      type: object
      properties:
        provider:
          type: string
          example: github
        displayName:
          type: string
          example: GitHub
        status:
          type: string
        connectedAt:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Project API key (bzy_proj_*) for project routes or team API key
        (bzy_team_*) for selected team routes.

````