***

title: delete
slug: /reference/python/rest/compat/transcriptions/delete
description: Delete a transcription.
max-toc-depth: 3
---------------------

For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

Delete a transcription.

<EndpointSchemaSnippet endpoint="DELETE /Accounts/{AccountSid}/Transcriptions/{Sid}" />

## **Example**

```python {9}
from signalwire.rest import RestClient

client = RestClient(
    project="your-project-id",
    token="your-api-token",
    host="your-space.signalwire.com",
)

client.compat.transcriptions.delete("TR...")
```