List Cloned Voices
FreshGETGET https://api.creatify.ai/api/voices/cloned/Retrieve a list of all your cloned voices.
Headers
| Header | Type | Required | Description |
|---|---|---|---|
X-API-ID | string | Yes | Your Creatify API ID |
X-API-KEY | string | Yes | Your Creatify API key |
Example Request
bash
curl -X GET 'https://api.creatify.ai/api/voices/cloned/' \
-H 'X-API-ID: your-api-id' \
-H 'X-API-KEY: your-api-key'Response
json
[
{
"id": "cloned-voice-001",
"name": "My Custom Voice",
"status": "done",
"preview_url": "https://cdn.creatify.ai/voices/cloned-voice-001-preview.mp3",
"created_at": "2024-01-15T10:30:00Z"
},
{
"id": "cloned-voice-002",
"name": "Company Spokesperson",
"status": "done",
"preview_url": "https://cdn.creatify.ai/voices/cloned-voice-002-preview.mp3",
"created_at": "2024-01-16T14:00:00Z"
}
]Status Codes
| Code | Description |
|---|---|
200 | Success |
401 | Unauthorized -- invalid API credentials |
429 | Rate limit exceeded |
500 | Internal server error |
TIP
Cloned voices use the same id format as built-in voices. Pass the cloned voice id to any endpoint that accepts voice_id.