For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Status
OverviewProductsManageAPI ReferenceTutorialsClient Libraries
OverviewProductsManageAPI ReferenceTutorialsClient Libraries
  • Voices
    • Overview
    • List Voices
    • Get Voice
    • Delete Voice
  • Recordings
    • Overview
    • List Recordings
    • Get Recording
    • Create Recording
    • Update Recording
    • Delete Recording
  • Projects & Clips
  • Voice Settings
    • Overview
    • List Presets
    • Get Preset
    • Create Preset
    • Update Preset
    • Delete Preset
  • Custom Pronunciations
    • Overview
    • Create Pronunciation
    • Bulk Create from ZIP
    • List Pronunciations
    • Get Pronunciation
    • Toggle Active Status
    • Delete Pronunciation
  • Account & Billing
    • Overview
    • Get Account
    • Teams
    • Billing Usage
Status
LogoLogo
Voices

Get Voice

Was this page helpful?
Previous

Delete Voice

Next
Built with

GET https://app.resemble.ai/api/v2/voices/{uuid}

Retrieve details of a specific voice.

ParameterTypeRequiredNotes
uuidstring✅Voice UUID (URL parameter).
advancedboolean❌Include advanced model information (query parameter).
sample_urlboolean❌Include sample audio URL (query parameter).
filtersboolean❌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}