***

title: Recordings
slug: /reference/python/rest/recordings
description: List, get, and delete call recordings.
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/recordings/list

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

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

Manage call recordings in your SignalWire project. This is a read-only resource
with delete support -- there is no create or update operation since recordings are
generated automatically during calls.

Access via `client.recordings` 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",
)

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

## **Methods**

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

  <Card title="get" href="/docs/server-sdks/reference/python/rest/recordings/get">
    Retrieve a specific recording.
  </Card>

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