***

title: list
slug: /reference/python/rest/fabric/swml-webhooks/list
description: List SWML webhook resources.
max-toc-depth: 3
---------------------

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

List SWML webhook resources in the project.

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

## **Response Example**

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

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