***

title: get
slug: /reference/python/rest/sip-profile/get
description: Retrieve the current project SIP profile.
max-toc-depth: 3
---------------------

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

Retrieve the current project SIP profile.

<EndpointSchemaSnippet endpoint="GET /api/relay/rest/sip_profile" />

## **Response Example**

<EndpointResponseSnippet endpoint="GET /api/relay/rest/sip_profile" />

## **Example**

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

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

profile = client.sip_profile.get()
print(profile.get("username"), profile.get("domain"))
```