Skip to main content
POST
/
api
/
v1
/
websites
Add Website
curl --request POST \
  --url https://api.sequenzy.com/api/v1/websites \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "domain": "<string>"
}
'
{
  "success": true,
  "website": {
    "domain": "mail.example.com",
    "status": "pending",
    "message": "Domain added. Configure DNS records and verify to start sending."
  }
}

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.

Add a sending domain to the authenticated company. Configure the returned DNS records before sending from the domain.

Request

domain
string
required
Domain to add.
curl -X POST "https://api.sequenzy.com/api/v1/websites" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"domain": "mail.example.com"}'

Responses

{
  "success": true,
  "website": {
    "domain": "mail.example.com",
    "status": "pending",
    "message": "Domain added. Configure DNS records and verify to start sending."
  }
}