***

title: Transcriptions
slug: /reference/python/rest/compat/transcriptions
description: Manage call transcriptions.
max-toc-depth: 3
---------------------

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

[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**

<CardGroup cols={3}>
  <Card title="list" href="/docs/server-sdks/reference/python/rest/compat/transcriptions/list">
    List transcriptions in the account.
  </Card>

  <Card title="get" href="/docs/server-sdks/reference/python/rest/compat/transcriptions/get">
    Retrieve a single transcription by SID.
  </Card>

  <Card title="delete" href="/docs/server-sdks/reference/python/rest/compat/transcriptions/delete">
    Delete a transcription.
  </Card>
</CardGroup>