***

title: get
slug: /reference/python/rest/video/conferences/get
description: Retrieve a single video conference.
max-toc-depth: 3
---------------------

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

Retrieve a single video conference by its unique identifier.

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

## **Response Example**

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

## **Example**

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

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

conf = client.video.conferences.get("conference-id")
```