***

title: create
slug: /reference/typescript/rest/compat/calls/create
description: Initiate a new outbound call.
max-toc-depth: 3
---------------------

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

Initiate a new outbound call.

<EndpointSchemaSnippet endpoint="POST /Accounts/{AccountSid}/Calls" />

## **Response Example**

<EndpointResponseSnippet endpoint="POST /Accounts/{AccountSid}/Calls" />

## **Example**

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

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

const call = await client.compat.calls.create({
  To: "+15559876543",
  From: "+15551234567",
  Url: "https://example.com/voice",
});
console.log(call.sid);
```