***

title: get
slug: /reference/typescript/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**

```typescript {9}
import { RestClient } from "@signalwire/sdk";

const client = new RestClient({
  project: "your-project-id",
  token: "your-api-token",
  host: "your-space.signalwire.com",
});

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