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

# List Integrations

> List available integrations with optional filtering.

Returns a list of integration definitions including their capabilities,
authentication methods, and configuration options.

Can optionally filter by type with the `type` parameter.

**Examples:**
```
GET /integrations?category=communication&status=active
GET /integrations?tags=messaging,email
GET /integrations?type=integration
GET /integrations?type=model
GET /integrations?type=vector_store
GET /integrations?type=all
```



## OpenAPI

````yaml api-reference/openapi.json get /api/v1/integrations
openapi: 3.1.0
info:
  title: FastAPI app
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/integrations:
    get:
      tags:
        - Integrations
      summary: List Integrations
      description: |-
        List available integrations with optional filtering.

        Returns a list of integration definitions including their capabilities,
        authentication methods, and configuration options.

        Can optionally filter by type with the `type` parameter.

        **Examples:**
        ```
        GET /integrations?category=communication&status=active
        GET /integrations?tags=messaging,email
        GET /integrations?type=integration
        GET /integrations?type=model
        GET /integrations?type=vector_store
        GET /integrations?type=all
        ```
      operationId: list_integrations_api_v1_integrations_get
      parameters:
        - name: category
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by category (communication, productivity, crm, etc.)
            title: Category
          description: Filter by category (communication, productivity, crm, etc.)
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by status (active, beta, deprecated, maintenance)
            default: active
            title: Status
          description: Filter by status (active, beta, deprecated, maintenance)
        - name: tags
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by tags (comma-separated)
            title: Tags
          description: Filter by tags (comma-separated)
        - name: type
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by type (integration, model, vector_store)
            default: all
            title: Type
          description: Filter by type (integration, model, vector_store)
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    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
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````