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

# Get Notification Settings

> Returns the current notification preferences for the authenticated user

Returns the current notification preferences for the authenticated user.

### Headers

| Header          | Required | Description                     |
| --------------- | -------- | ------------------------------- |
| `Authorization` | Yes      | `Bearer ctgo_your_api_key_here` |

### Example

```bash theme={null}
curl https://www.catchthegoodones.com/api/v2/notification-settings \
  -H "Authorization: Bearer ctgo_your_api_key_here"
```

### Response

<ResponseExample>
  ```json 200 theme={null}
  {
    "summaryFrequency": "daily",
    "emailSummariesEnabled": true,
    "telegramSummariesEnabled": false,
    "telegramConnected": false
  }
  ```
</ResponseExample>

### Response fields

| Field                      | Type    | Description                                             |
| -------------------------- | ------- | ------------------------------------------------------- |
| `summaryFrequency`         | string  | `"after_every_sync"`, `"daily"`, `"weekly"`, or `"off"` |
| `emailSummariesEnabled`    | boolean | Whether email summaries are enabled                     |
| `telegramSummariesEnabled` | boolean | Whether Telegram summaries are enabled                  |
| `telegramConnected`        | boolean | Whether a Telegram chat has been linked                 |
