***

title: list_events
slug: /reference/python/rest/video/room-recordings/list-events
description: List events associated with a recording.
max-toc-depth: 3
---------------------

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

List events associated with a recording (e.g., recording started, paused,
completed).

<EndpointSchemaSnippet endpoint="GET /api/video/room_recordings/{id}/events" />

## **Response Example**

<EndpointResponseSnippet endpoint="GET /api/video/room_recordings/{id}/events" />

## **Example**

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

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

events = client.video.room_recordings.list_events("recording-id")
```