> ## 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.

# Get Tts Providers Comprehensive

> 🎙️ Get ALL TTS providers with complete configuration data.

**Frontend Usage:**
Use this to populate provider selection dropdowns and show capabilities.

**Returns for each provider:**
- Available models with language support
- Pre-built voices with metadata
- Latency and quality information
- Configuration status
- Agent configuration examples

**Example Response:**
```json
{
  "providers": {
    "elevenlabs": {
      "name": "ElevenLabs",
      "configured": true,
      "models": [...],
      "voices": [...],
      "max_languages": 74,
      "recommended_model": "eleven_flash_v2_5"
    }
  }
}
```



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json get /providers/tts/providers
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:
  /providers/tts/providers:
    get:
      tags:
        - providers
      summary: Get Tts Providers Comprehensive
      description: |-
        🎙️ Get ALL TTS providers with complete configuration data.

        **Frontend Usage:**
        Use this to populate provider selection dropdowns and show capabilities.

        **Returns for each provider:**
        - Available models with language support
        - Pre-built voices with metadata
        - Latency and quality information
        - Configuration status
        - Agent configuration examples

        **Example Response:**
        ```json
        {
          "providers": {
            "elevenlabs": {
              "name": "ElevenLabs",
              "configured": true,
              "models": [...],
              "voices": [...],
              "max_languages": 74,
              "recommended_model": "eleven_flash_v2_5"
            }
          }
        }
        ```
      operationId: get_tts_providers_comprehensive_providers_tts_providers_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````