***

title: get
slug: /reference/python/rest/fabric/sip-gateways/get
description: Retrieve a single SIP gateway 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 gateway resource.

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

## **Response Example**

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

## **Example**

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

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

gateway = client.fabric.sip_gateways.get("gateway-id")
print(f"Sip Gateway: {gateway['display_name']}, ID: {gateway['id']}")
```