> ## 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 Landing Page Domain

> Get the custom landing page domain settings

Returns the custom domain used for your published landing pages, along with its DNS and SSL status.

The `domain` object is always returned. When no custom domain is connected, its `domain` field is `null` and `domainStatus` is `not_started`.

## Request

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

## Responses

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "domain": {
      "domain": "pages.example.com",
      "domainStatus": "verified",
      "verifiedAt": "2026-05-01T10:35:00Z",
      "dnsRecordAddedAt": "2026-05-01T10:00:00Z",
      "sslStatus": "active",
      "error": null,
      "verificationRecords": [],
      "lastCheckedAt": "2026-05-01T10:35:00Z",
      "cnameTarget": "pages.sequenzydns.com"
    }
  }
  ```

  ```json 200 theme={null}
  {
    "success": true,
    "domain": {
      "domain": null,
      "domainStatus": "not_started",
      "verifiedAt": null,
      "dnsRecordAddedAt": null,
      "sslStatus": null,
      "error": null,
      "verificationRecords": [],
      "lastCheckedAt": null,
      "cnameTarget": "pages.sequenzydns.com"
    }
  }
  ```

  ```json 401 theme={null}
  {
    "success": false,
    "error": "Unauthorized"
  }
  ```
</ResponseExample>
