Delete Voice
curl --request POST \
--url https://api.minimax.io/v1/delete_voice \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: <content-type>' \
--data '
{
"voice_type": "voice_cloning",
"voice_id": "yanshang11123"
}
'{
"voice_id": "yanshang11123",
"created_time": "1728962464",
"base_resp": {
"status_code": 0,
"status_msg": "success"
}
}Voice Management
Delete Voice
Use this API to delete generated voices.
POST
/
v1
/
delete_voice
Delete Voice
curl --request POST \
--url https://api.minimax.io/v1/delete_voice \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: <content-type>' \
--data '
{
"voice_type": "voice_cloning",
"voice_id": "yanshang11123"
}
'{
"voice_id": "yanshang11123",
"created_time": "1728962464",
"base_resp": {
"status_code": 0,
"status_msg": "success"
}
}This API is used to delete a specified voice_id. Deletions apply only to voice_id values generated through Voice Clone API and Voice Design API.
⚠️ Note: Once deleted, the voice_id cannot be reused.
Authorizations
HTTP: Bearer Auth
- Security Scheme Type: http
- HTTP Authorization Scheme:
Bearer API_key, can be found in Account Management>API Keys.
Headers
The media type of the request body. Must be set to application/json to ensure the data is sent in JSON format.
Available options:
application/json Body
application/json
Delete voice request parameters
⌘I