***

title: list
slug: /reference/python/rest/compat/transcriptions/list
description: List transcriptions in the account.
max-toc-depth: 3
---------------------

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

List transcriptions in the account.

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

## **Response Example**

<EndpointResponseSnippet endpoint="GET /Accounts/{AccountSid}/Transcriptions" />

## **Example**

```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(PageSize=20)
```