> ## Documentation Index
> Fetch the complete documentation index at: https://docs.metriport.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Settings

> Gets the settings for your account.

## Response

<ResponseField name="id" type="string" required>
  The settings ID.
</ResponseField>

<ResponseField name="webhookUrl" type="string" required>
  Your application's webhook URL.
</ResponseField>

<ResponseField name="webhookKey" type="string" required>
  The key used to authenticate webhook calls to your app.
</ResponseField>

<ResponseExample>
  ```javascript Metriport SDK theme={null}
  import { MetriportMedicalApi } from "@metriport/api-sdk";

  const metriportClient = new MetriportMedicalApi("YOUR_API_KEY");

  const response = await metriportClient.getSettings();
  ```
</ResponseExample>

Example response:

```json theme={null}
{
  "id": "<settings-id>",
  "webhookUrl": "https://server.domain.com/webhook/endpoint",
  "webhookKey": "<webhook-key>"
}
```
