> ## Documentation Index
> Fetch the complete documentation index at: https://docs.modelhunter.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List Voices

> List available ElevenLabs voices for use in text-to-speech generation.

## Query Parameters

<ParamField query="search" type="string">
  Filter voices by name. Case-insensitive partial match.
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": {
      "voices": [
        {
          "voice_id": "JBFqnCBsd6RMkjVDRZzb",
          "name": "George",
          "description": "A warm, friendly male voice with a British accent."
        },
        {
          "voice_id": "EXAVITQu4vr4xnSDxMaL",
          "name": "Sarah",
          "description": "A clear, professional female voice."
        }
      ],
      "total": 2
    }
  }
  ```
</ResponseExample>
