Skip to content

List Cloned Voices

FreshGET
GET https://api.creatify.ai/api/voices/cloned/

Retrieve a list of all your cloned voices.

Headers

HeaderTypeRequiredDescription
X-API-IDstringYesYour Creatify API ID
X-API-KEYstringYesYour 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

CodeDescription
200Success
401Unauthorized -- invalid API credentials
429Rate limit exceeded
500Internal 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.