Skip to main content
GET
/
api
/
v1
/
elevenlabs
/
voices
List Voices
curl --request GET \
  --url https://api.modelhunter.ai/api/v1/elevenlabs/voices \
  --header 'Authorization: Bearer <token>'
{
  "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
  }
}

Query Parameters

Filter voices by name. Case-insensitive partial match.
{
  "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
  }
}