Get Voice
GET https://app.resemble.ai/api/v2/voices/{uuid}
Retrieve details of a specific voice.
| Parameter | Type | Required | Notes |
|---|---|---|---|
uuid | string | ✅ | Voice UUID (URL parameter). |
advanced | boolean | ❌ | Include advanced model information (query parameter). |
sample_url | boolean | ❌ | Include sample audio URL (query parameter). |
filters | boolean | ❌ | Include filter metadata (query parameter). |
$ curl 'https://app.resemble.ai/api/v2/voices/VOICE_UUID?advanced=true' \ > -H 'Authorization: Bearer YOUR_API_TOKEN'
1 { 2 "success": true, 3 "item": { 4 "uuid": "VOICE_UUID", 5 "name": "Production Voice", 6 "status": "ready", 7 "voice_status": "ready", 8 "voice_type": "professional", 9 "default_language": "en-US", 10 "supported_languages": ["en-US"], 11 "dataset_url": null, 12 "callback_uri": null, 13 "source": "Custom Voice", 14 "component_status": { 15 "text_to_speech": { "status": "ready" }, 16 "fill": { "status": "ready" }, 17 "voice_conversion": { "status": "ready" } 18 }, 19 "api_support": { 20 "sync_tts": true, 21 "async_tts": true, 22 "fill": true, 23 "sts": true 24 }, 25 "created_at": "2024-01-15T10:30:00Z", 26 "updated_at": "2024-01-15T10:32:00Z" 27 } 28 }
