***

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

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

List cXML application resources in the project.

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

## **Response Example**

<EndpointResponseSnippet endpoint="GET /api/fabric/resources/cxml_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.cxml_applications.list()
for app in response.get("data", []):
    print(f"{app['display_name']}: {app['id']}")
```