***

title: list
slug: /reference/python/rest/fabric/relay-applications/list
description: List RELAY application resources.
max-toc-depth: 3
---------------------

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

List RELAY application resources in the project.

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

## **Response Example**

<EndpointResponseSnippet endpoint="GET /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",
)

response = client.fabric.relay_applications.list()
for item in response.get("data", []):
    print(f"{item['display_name']}: {item['id']}")
```