JavaScript
import Retell from 'retell-sdk'; const client = new Retell({ apiKey: 'YOUR_RETELL_API_KEY', }); const response = await client.voice.search({ search_query: 'search_query' }); console.log(response.voices);
{ "voices": [ { "provider_voice_id": "<string>", "name": "<string>", "description": "<string>", "public_user_id": "<string>" } ] }
Search for community voices from voice providers
Authentication header containing API key (find it in dashboard). The format is "Bearer YOUR_API_KEY"
Search query to find voices by name, description, or ID.
Voice provider to search.
elevenlabs
cartesia
minimax
Community voices retrieved successfully
Show child attributes
Was this page helpful?