> ## 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 Model Providers

> List available model providers.

Returns a list of LLM and embedding model providers with their
capabilities, models, and authentication requirements.

**Example:**
```
GET /integrations/providers
GET /integrations/providers?has_embedding=true
```



## OpenAPI

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

        Returns a list of LLM and embedding model providers with their
        capabilities, models, and authentication requirements.

        **Example:**
        ```
        GET /integrations/providers
        GET /integrations/providers?has_embedding=true
        ```
      operationId: list_model_providers_api_v1_integrations_providers_get
      parameters:
        - name: has_embedding
          in: query
          required: false
          schema:
            anyOf:
              - type: boolean
              - type: 'null'
            description: Filter by providers with embedding models
            title: Has Embedding
          description: Filter by providers with embedding models
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by model status
            default: active
            title: Status
          description: Filter by model status
      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

````