***

title: VideoRoomSessions
slug: /reference/python/rest/video/room-sessions
description: Query video room sessions with events, members, and 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/video/room-sessions/list

[get]: /docs/server-sdks/reference/python/rest/video/room-sessions/get

[listevents]: /docs/server-sdks/reference/python/rest/video/room-sessions/list-events

[listmembers]: /docs/server-sdks/reference/python/rest/video/room-sessions/list-members

[listrecordings]: /docs/server-sdks/reference/python/rest/video/room-sessions/list-recordings

Query video room sessions and their associated events, members, and recordings.
Sessions represent the period during which a room is active with participants.

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

sessions = client.video.room_sessions.list()
```

## **Methods**

<CardGroup cols={3}>
  <Card title="list" href="/docs/server-sdks/reference/python/rest/video/room-sessions/list">
    List video room sessions.
  </Card>

  <Card title="get" href="/docs/server-sdks/reference/python/rest/video/room-sessions/get">
    Retrieve a single room session.
  </Card>

  <Card title="list_events" href="/docs/server-sdks/reference/python/rest/video/room-sessions/list-events">
    List events that occurred during a room session.
  </Card>

  <Card title="list_members" href="/docs/server-sdks/reference/python/rest/video/room-sessions/list-members">
    List members who joined a room session.
  </Card>

  <Card title="list_recordings" href="/docs/server-sdks/reference/python/rest/video/room-sessions/list-recordings">
    List recordings created during a room session.
  </Card>
</CardGroup>