> ## 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 Voices By Provider

> 🎤 Get ALL voices for a specific TTS provider with full metadata.

**Frontend Usage:**
Use this to populate voice selection with filtering by gender, accent, and language.

**Parameters:**
- `provider`: elevenlabs, openai, cartesia, deepgram
- `gender`: Filter by gender (male, female, neutral)
- `accent`: Filter by accent (american, british, indian, etc)
- `language`: Filter by primary or supported language

**Returns:**
Complete voice data with gender, accent, tone, and language support.



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json get /providers/tts/voices/{provider}
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/voices/{provider}:
    get:
      tags:
        - providers
      summary: Get Tts Voices By Provider
      description: >-
        🎤 Get ALL voices for a specific TTS provider with full metadata.


        **Frontend Usage:**

        Use this to populate voice selection with filtering by gender, accent,
        and language.


        **Parameters:**

        - `provider`: elevenlabs, openai, cartesia, deepgram

        - `gender`: Filter by gender (male, female, neutral)

        - `accent`: Filter by accent (american, british, indian, etc)

        - `language`: Filter by primary or supported language


        **Returns:**

        Complete voice data with gender, accent, tone, and language support.
      operationId: get_tts_voices_by_provider_providers_tts_voices__provider__get
      parameters:
        - name: provider
          in: path
          required: true
          schema:
            type: string
            title: Provider
        - name: gender
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: 'Filter by gender: male, female, neutral'
            title: Gender
          description: 'Filter by gender: male, female, neutral'
        - name: accent
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: 'Filter by accent: american, british, australian, etc'
            title: Accent
          description: 'Filter by accent: american, british, australian, etc'
        - name: language
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: 'Filter by language code: en, es, ta, etc'
            title: Language
          description: 'Filter by language code: en, es, ta, etc'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
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
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````