***

title: create
slug: /reference/typescript/rest/compat/applications/create
description: Create a new application.
max-toc-depth: 3
---------------------

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

Create a new application.

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

## **Response Example**

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

## **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 app = await client.compat.applications.create({
  FriendlyName: "My App",
  VoiceUrl: "https://example.com/voice",
  SmsUrl: "https://example.com/sms",
});
```