Skip to content

Delete Cloned Voice

FreshDELETE
DELETE https://api.creatify.ai/api/voices/cloned/{id}/

Permanently delete a cloned voice. This action cannot be undone.

Path Parameters

NameTypeRequiredDescription
idstringYesThe cloned voice ID to delete

Headers

HeaderTypeRequiredDescription
X-API-IDstringYesYour Creatify API ID
X-API-KEYstringYesYour Creatify API key

Example Request

bash
curl -X DELETE 'https://api.creatify.ai/api/voices/cloned/cloned-voice-001/' \
  -H 'X-API-ID: your-api-id' \
  -H 'X-API-KEY: your-api-key'

Response

json
{
  "message": "Voice deleted successfully"
}

Status Codes

CodeDescription
200Voice deleted successfully
401Unauthorized -- invalid API credentials
404Cloned voice not found
500Internal server error

WARNING

Deleting a cloned voice is permanent. Any future video generation tasks referencing this voice ID will fail. Existing videos already rendered with this voice will not be affected.