***

title: create
slug: /reference/python/rest/fabric/relay-applications/create
description: Create a new RELAY application resource.
max-toc-depth: 3
---------------------

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

Create a new RELAY application resource.

<EndpointSchemaSnippet endpoint="POST /api/fabric/resources/relay_applications" />

## **Response Example**

<EndpointResponseSnippet endpoint="POST /api/fabric/resources/relay_applications" />

## **Example**

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

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

result = client.fabric.relay_applications.create(
    name="my-item",
)
print(f"Created: {result['id']}")
```