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

# Search Voices

> 🔍 Search and filter voices across all providers.

**Frontend Usage:**
Use this for advanced voice search with multiple filters.

**Example:**
- /voices/search?language=ta&gender=female - Tamil female voices
- /voices/search?accent=british&for_voice_agents=true - British voices for agents



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json get /providers/voices/search
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/voices/search:
    get:
      tags:
        - providers
      summary: Search Voices
      description: >-
        🔍 Search and filter voices across all providers.


        **Frontend Usage:**

        Use this for advanced voice search with multiple filters.


        **Example:**

        - /voices/search?language=ta&gender=female - Tamil female voices

        - /voices/search?accent=british&for_voice_agents=true - British voices
        for agents
      operationId: search_voices_providers_voices_search_get
      parameters:
        - name: query
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Search voices by name, description, or use case
            title: Query
          description: Search voices by name, description, or use case
        - name: language
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by language
            title: Language
          description: Filter by language
        - name: gender
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by gender
            title: Gender
          description: Filter by gender
        - name: accent
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by accent
            title: Accent
          description: Filter by accent
        - name: provider
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by provider
            title: Provider
          description: Filter by provider
        - name: for_voice_agents
          in: query
          required: false
          schema:
            type: boolean
            description: Only show voices recommended for voice agents
            default: false
            title: For Voice Agents
          description: Only show voices recommended for voice agents
      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

````