***

title: get
slug: /reference/python/rest/fabric/swml-webhooks/get
description: Retrieve a single SWML webhook resource.
max-toc-depth: 3
---------------------

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

Retrieve a single SWML webhook resource.

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

## **Response Example**

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

## **Example**

```python {9}
from signalwire.rest import RestClient

client = RestClient(
    project="your-project-id",
    token="your-api-token",
    host="your-space.signalwire.com",
)

webhook = client.fabric.swml_webhooks.get("webhook-id")
print(f"Swml Webhook: {webhook['display_name']}, ID: {webhook['id']}")
```