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

# Get Tracking Settings

> Get the company's email tracking configuration

Get how a company measures email engagement: open, click, and unsubscribe tracking, the attribution window, automatic UTM tagging, the dedicated click-tracking domain, and inbound reply tracking.

Use this to audit measurement readiness, or to explain why opens or clicks are not being recorded.

## Request

```bash theme={null}
curl "https://api.sequenzy.com/api/v1/tracking-settings" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

## Response fields

<ResponseField name="tracking.openTrackingEnabled" type="boolean">
  Whether open tracking pixels are injected.
</ResponseField>

<ResponseField name="tracking.clickTrackingEnabled" type="boolean">
  Whether links are rewritten for click tracking.
</ResponseField>

<ResponseField name="tracking.defaultAttributionWindowHours" type="number">
  Hours after a send during which conversions are attributed to it.
</ResponseField>

<ResponseField name="autoUtm.enabled" type="boolean">
  Whether UTM parameters are appended to outbound links automatically.
</ResponseField>

<ResponseField name="trackingDomain" type="object">
  Dedicated click-tracking domain with its verification and SSL status.
  `null` means click links use the shared Sequenzy tracking domain.
</ResponseField>

<ResponseField name="replyTracking" type="object">
  Inbound reply configuration: `inboundEmailEnabled`,
  `inboundReplyDomainMode`, and `forwardReplies`.
</ResponseField>

## Responses

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "tracking": {
      "openTrackingEnabled": true,
      "clickTrackingEnabled": true,
      "unsubscribeTrackingEnabled": true,
      "defaultAttributionWindowHours": 24
    },
    "autoUtm": {
      "enabled": true,
      "settings": { "utmSource": "sequenzy", "utmMedium": "email" }
    },
    "trackingDomain": {
      "domain": "links.acme.com",
      "status": "verified",
      "sslStatus": "active",
      "verifiedAt": "2026-02-02T11:00:00Z",
      "lastCheckedAt": "2026-05-01T06:00:00Z",
      "error": null
    },
    "replyTracking": {
      "inboundEmailEnabled": true,
      "inboundReplyDomainMode": "sequenzy",
      "forwardReplies": true
    }
  }
  ```

  ```json 401 theme={null}
  {
    "success": false,
    "error": "Unauthorized"
  }
  ```

  ```json 403 theme={null}
  {
    "success": false,
    "error": "API key is missing required scope: account:read"
  }
  ```
</ResponseExample>
