***

title: create
slug: /reference/python/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**

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

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

app = client.compat.applications.create(
    FriendlyName="My App",
    VoiceUrl="https://example.com/voice",
    SmsUrl="https://example.com/sms"
)
```