Skip to main content
DELETE
/
v1
/
voices
/
{id}
Delete Voice
curl --request DELETE \
  --url https://api.bland.ai/v1/voices/{id} \
  --header 'authorization: <authorization>'
{
  "data": {
    "status": "success",
    "message": "Voice deleted successfully"
  },
  "errors": null
}

Overview

Soft-deletes a voice from your library. The voice’s deleted_at column is stamped and it stops appearing in List Voices and synthesis flows. Only voices owned by your org can be deleted; curated default voices, voices in the public library you have not added, and voices owned by other orgs return 400 ERROR_DELETING_VOICE.

Headers

authorization
string
required
Your API key for authentication.

Path Parameters

id
string
required
UUID of the voice to delete.

Response

data
object
Confirmation that the voice was deleted.
errors
null | array
null on success.
{
  "data": {
    "status": "success",
    "message": "Voice deleted successfully"
  },
  "errors": null
}

Docs for agents: llms.txt