> ## Documentation Index
> Fetch the complete documentation index at: https://docs.usegoro.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete a voice

> Permanently delete one of your cloned voices, at the provider as well as here. After this the voice_id stops working and nothing further is charged for keeping 

Permanently delete one of your cloned voices, at the provider as well as here. After this the voice\_id stops working and nothing further is charged for keeping it.

<Note>Use when a cloned voice is no longer needed, or when the person it belongs to withdraws consent. This is not reversible and there is no way to recover the model afterwards: cloning again means supplying the reference recordings again. A voice\_id belonging to another workspace is answered exactly like one that does not exist.</Note>

## Price

**\$0.0020 per call.** A flat price. Every call that succeeds costs exactly this, whatever it returns, and you know the number before you make the call.

There is no ceiling to read and no usage to reconcile afterwards. A call that fails, times out or is stopped releases its hold in full and costs nothing.

## Input

| Field      | Type     | Required | Notes                                                                            |
| ---------- | -------- | -------- | -------------------------------------------------------------------------------- |
| `voice_id` | `string` | yes      | The id of a voice this workspace owns, as returned by voice.clone or voice.list. |

<Note>
  These are all the fields this endpoint accepts. Anything else is rejected as
  a `validation_error` rather than forwarded to the provider.
</Note>

## Example

```bash theme={null}
curl -X POST https://api.usegoro.ai/v1/run \
  -H "Authorization: Bearer $GORO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"voice.delete","input":{"voice_id":"a1b2c3d4e5f60718293a4b5c"}}'
```

## Response

One row of the response. Values are illustrative.

```json theme={null}
{
  "label": "Narrator, warm male",
  "status": "deleted",
  "voice_id": "a1b2c3d4e5f60718293a4b5c",
  "deleted_at_provider": true
}
```
