***

title: get
slug: /reference/python/rest/fabric/resources/get
description: Retrieve a single Fabric resource.
max-toc-depth: 3
---------------------

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

Retrieve a single Fabric resource by ID.

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

## **Response Example**

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

## **Example**

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

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

resource = client.fabric.resources.get("resource-id")
print(f"{resource['type']}: {resource['name']}, ID: {resource['id']}")
```