***

title: get
slug: /reference/python/rest/video/room-sessions/get
description: Retrieve a single room session.
max-toc-depth: 3
---------------------

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

Retrieve a single room session by its unique identifier.

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

## **Response Example**

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

## **Example**

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

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

session = client.video.room_sessions.get("session-id")
```