> ## 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.

# Verify Landing Page Domain

> Verify landing page domain DNS and SSL status

Check DNS and SSL status for the current custom landing page domain.

## Request

```bash theme={null}
curl -X POST "https://api.sequenzy.com/api/v1/landing-pages/domain/verify" \
  -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": null,
      "sslStatus": "active",
      "error": null,
      "verificationRecords": [],
      "lastCheckedAt": "2026-05-01T10:35:00Z",
      "cnameTarget": "pages.sequenzydns.com",
      "actualValues": ["pages.sequenzydns.com"],
      "verified": true,
      "message": "Landing page domain verified."
    }
  }
  ```

  ```json 400 theme={null}
  {
    "success": false,
    "error": "Add a landing page domain first."
  }
  ```

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

  ```json 500 theme={null}
  {
    "success": false,
    "error": "Landing page domain setup failed."
  }
  ```
</ResponseExample>
