Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Connect a custom domain for landing pages
cURL
curl --request POST \ --url https://api.sequenzy.com/api/v1/landing-pages/domain \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "domain": "<string>" } '
{ "success": true, "domain": { "domain": "pages.example.com", "domainStatus": "pending", "verifiedAt": null, "dnsRecordAddedAt": null, "sslStatus": null, "error": null, "verificationRecords": [], "lastCheckedAt": "2026-05-01T10:30:00Z", "cnameTarget": "pages.sequenzydns.com" }, "message": "Landing page domain connected. Add a CNAME record pointing to pages.sequenzydns.com, then verify the domain." }
pages.example.com
curl -X POST "https://api.sequenzy.com/api/v1/landing-pages/domain" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"domain": "pages.example.com"}'