***

title: list
slug: /reference/python/rest/recordings/list
description: List recordings in the project.
max-toc-depth: 3
---------------------

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

List recordings in the project.

<EndpointSchemaSnippet endpoint="GET /api/relay/rest/recordings" />

## **Response Example**

<EndpointResponseSnippet endpoint="GET /api/relay/rest/recordings" />

## **Example**

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

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

result = client.recordings.list(page_size=20)
for rec in result.get("data", []):
    print(rec.get("id"), rec.get("duration"), rec.get("state"))
```