Skip to main content
Delete Project
curl --request DELETE \
  --url https://api.voicecheap.ai/v1/translate/{projectId} \
  --header 'x-api-key: <x-api-key>'
{
  "success": true,
  "message": "<string>",
  "projectId": "<string>"
}

Delete Project

Permanently delete a translation project and its associated assets. This cleanup also removes any stored cloned voice preview example files that were generated for the project. If some internal generated files or segment records were already removed before deletion completes, cleanup continues in best-effort mode and still finalizes the project deletion.
This operation is irreversible. The project, works, generated media assets, and stored voice preview example files will be deleted.

Request

Headers

x-api-key
string
required
Your VoiceCheap API key. Get one from app.voicecheap.ai/page-api.

Path Parameters

projectId
string
required
The unique identifier of the translation project to delete.

Response

success
boolean
required
Indicates the delete operation completed successfully.
message
string
required
Human-readable confirmation message.
projectId
string
required
The ID of the deleted project.

Examples

curl -X DELETE "https://api.voicecheap.ai/v1/translate/abc123-def456-ghi789" \
  -H "x-api-key: vc_your-api-key"

Errors

StatusCodeDescription
401INVALID_API_KEYThe provided API key is invalid
403FORBIDDENYou don’t have permission to delete this project
404PROJECT_NOT_FOUNDThe specified project does not exist
429RATE_LIMIT_EXCEEDEDToo many requests (limit: 10 requests per minute)
500INTERNAL_ERRORUnexpected server error