> ## 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 All Tts Providers

> Get all available TTS providers with their voice options.
Updated with official LiveKit plugin configurations.



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json get /admin/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:
  /admin/providers/tts-providers:
    get:
      tags:
        - admin-providers
      summary: Get All Tts Providers
      description: |-
        Get all available TTS providers with their voice options.
        Updated with official LiveKit plugin configurations.
      operationId: get_all_tts_providers_admin_providers_tts_providers_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````