curl --request GET \
--url https://api.puretalk.ai/api/voices/{id} \
--header 'X-API-KEY: <api-key>'{
"msg": "Voice retrieved successfully",
"err": false,
"results": {
"voice_id": "Puretalk Model V4",
"name": "Seven",
"avatar": "https://puretalkstorageprod.blob.core.windows.net/puretalk-public/puretalk-57f71505-0c31-4032-b9e8-f0985d7ae43d-webp",
"gender": "female",
"demo_audio_url": "https://puretalkstorageprod.blob.core.windows.net/puretalk-public/puretalk-b6dfdb86-6bf3-4851-b134-b525f0a13628-mp3",
"is_cloned": false,
"language": "en",
"description": "This is a description of the voice"
}
}Returns a single voice based on the ID supplied
curl --request GET \
--url https://api.puretalk.ai/api/voices/{id} \
--header 'X-API-KEY: <api-key>'{
"msg": "Voice retrieved successfully",
"err": false,
"results": {
"voice_id": "Puretalk Model V4",
"name": "Seven",
"avatar": "https://puretalkstorageprod.blob.core.windows.net/puretalk-public/puretalk-57f71505-0c31-4032-b9e8-f0985d7ae43d-webp",
"gender": "female",
"demo_audio_url": "https://puretalkstorageprod.blob.core.windows.net/puretalk-public/puretalk-b6dfdb86-6bf3-4851-b134-b525f0a13628-mp3",
"is_cloned": false,
"language": "en",
"description": "This is a description of the voice"
}
}Authorization header containing API key. You can find your API key in the dashboard under 'API Keys'.
ID of voice to return
Voice response
Message from the API
"Voice retrieved successfully"
Error flag
false
Voice object
Show child attributes
Unique identifier for the voice model
"Puretalk Model V4"
Display name of the voice
"Seven"
URL to the voice's avatar image
"https://puretalkstorageprod.blob.core.windows.net/puretalk-public/puretalk-57f71505-0c31-4032-b9e8-f0985d7ae43d-webp"
Gender of the voice (e.g., 'male', 'female')
"female"
URL to a sample audio file demonstrating the voice
"https://puretalkstorageprod.blob.core.windows.net/puretalk-public/puretalk-b6dfdb86-6bf3-4851-b134-b525f0a13628-mp3"
Indicates if this is a cloned voice
false
Language code for the voice (e.g., 'en' for English)
"en"
Optional description of the voice
"This is a description of the voice"
Was this page helpful?