***

title: get
slug: /reference/python/rest/recordings/get
description: Retrieve a specific recording.
max-toc-depth: 3
---------------------

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

Retrieve a specific recording.

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

## **Response Example**

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

## **Example**

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

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

rec = client.recordings.get("recording-id")
print(rec.get("duration"), rec.get("url"))
```