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 "default_language": "en-US", 9 "supported_languages": ["en-US"], 10 "dataset_url": null, 11 "callback_uri": null, 12 "source": "Custom Voice", 13 "component_status": { 14 "text_to_speech": { "status": "ready" }, 15 "fill": { "status": "ready" }, 16 "voice_conversion": { "status": "ready" } 17 }, 18 "api_support": { 19 "sync_tts": true, 20 "async_tts": true, 21 "fill": true, 22 "sts": true 23 }, 24 "created_at": "2024-01-15T10:30:00Z", 25 "updated_at": "2024-01-15T10:32:00Z" 26 } 27 }
