***

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

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

List cXML script resources in the project.

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

## **Response Example**

<EndpointResponseSnippet endpoint="GET /api/fabric/resources/cxml_scripts" />

## **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_scripts.list()
for item in response.get("data", []):
    print(f"{item['name']}: {item['id']}")
```