Skip to main content
POST
/
api
/
v1
/
landing-pages
/
domain
/
verify
Verify Landing Page Domain
curl --request POST \
  --url https://api.sequenzy.com/api/v1/landing-pages/domain/verify \
  --header 'Authorization: Bearer <token>'
{
  "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."
  }
}
Check DNS and SSL status for the current custom landing page domain.

Request

curl -X POST "https://api.sequenzy.com/api/v1/landing-pages/domain/verify" \
  -H "Authorization: Bearer YOUR_API_KEY"

Responses

{
  "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."
  }
}