***

title: create
slug: /reference/typescript/rest/video/conferences/create
description: Create a new video conference.
max-toc-depth: 3
---------------------

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

Create a new video conference.

<EndpointSchemaSnippet endpoint="POST /api/video/conferences" />

## **Response Example**

<EndpointResponseSnippet endpoint="POST /api/video/conferences" />

## **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.create({
  display_name: "Team Meeting",
  name: "team-meeting",
});
```