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

# List Integrations

> List integrations for the current tenant.



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json get /integrations
openapi: 3.1.0
info:
  title: Backend - Multilingual Voice Agent System
  description: FastAPI backend for multilingual voice agents with tool use
  version: 1.0.0
servers: []
security: []
paths:
  /integrations:
    get:
      tags:
        - integrations
        - integrations
      summary: List Integrations
      description: List integrations for the current tenant.
      operationId: list_integrations_integrations_get
      parameters:
        - name: service_type
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Service Type
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Integration'
                title: Response List Integrations Integrations Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    Integration:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        tenant_id:
          type: string
          format: uuid
          title: Tenant Id
        provider:
          type: string
          title: Provider
        service_type:
          type: string
          title: Service Type
        enabled:
          type: boolean
          title: Enabled
        status:
          type: string
          title: Status
        health_status:
          type: string
          title: Health Status
        last_health_check:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Health Check
        created_at:
          type: string
          title: Created At
        updated_at:
          type: string
          title: Updated At
      type: object
      required:
        - id
        - tenant_id
        - provider
        - service_type
        - enabled
        - status
        - health_status
        - created_at
        - updated_at
      title: Integration
      description: Integration response model.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````