Skip to main content
GET
/
api
/
v1
/
websites
List Websites
curl --request GET \
  --url https://api.sequenzy.com/api/v1/websites \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "websites": [
    {
      "domain": "mail.example.com",
      "status": "verified",
      "createdAt": "2026-05-01T10:30:00Z"
    }
  ]
}

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.

List the sending domains configured for the authenticated company.

Request

curl "https://api.sequenzy.com/api/v1/websites" \
  -H "Authorization: Bearer YOUR_API_KEY"

Responses

{
  "success": true,
  "websites": [
    {
      "domain": "mail.example.com",
      "status": "verified",
      "createdAt": "2026-05-01T10:30:00Z"
    }
  ]
}