***

title: get
slug: /reference/python/rest/fabric/sip-endpoints/get
description: Retrieve a single SIP endpoint resource.
max-toc-depth: 3
---------------------

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

Retrieve a single SIP endpoint resource.

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

## **Response Example**

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

## **Example**

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

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

endpoint = client.fabric.sip_endpoints.get("endpoint-id")
print(f"Sip Endpoint: {endpoint['name']}, ID: {endpoint['id']}")
```