***

title: get
slug: /reference/python/rest/fabric/cxml-applications/get
description: Retrieve a single cXML application resource.
max-toc-depth: 3
---------------------

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

Retrieve a single cXML application resource.

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

## **Response Example**

<EndpointResponseSnippet endpoint="GET /api/fabric/resources/cxml_applications/{id}" />

## **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.fabric.cxml_applications.get("app-id")
print(f"cXML Application: {app['display_name']}, ID: {app['id']}")
```