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

# Transcriptions

> Manage call transcriptions.

[restclient]: /docs/server-sdks/reference/python/rest/client

[list]: /docs/server-sdks/reference/python/rest/compat/transcriptions/list

[get]: /docs/server-sdks/reference/python/rest/compat/transcriptions/get

[delete]: /docs/server-sdks/reference/python/rest/compat/transcriptions/delete

Manage call transcriptions with list, get, and delete operations.

Access via `client.compat.transcriptions` on a [`RestClient`][restclient] instance.

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

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

transcriptions = client.compat.transcriptions.list()
```

## **Methods**

#### [list](/docs/server-sdks/reference/python/rest/compat/transcriptions/list)

List transcriptions in the account.

#### [get](/docs/server-sdks/reference/python/rest/compat/transcriptions/get)

Retrieve a single transcription by SID.

#### [delete](/docs/server-sdks/reference/python/rest/compat/transcriptions/delete)

Delete a transcription.