***

title: get
slug: /reference/typescript/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**

```typescript {4}
import { RestClient } from "@signalwire/sdk";

const client = new RestClient();
const profile = await client.sipProfile.get();
console.log(profile);
```