Skip to main content
POST
/
domains
/
{domain}
/
verify
Verify Domain
curl --request POST \
  --url https://app.uselettr.com/api/domains/{domain}/verify \
  --header 'Authorization: <api-key>'
{
"message": "Domain verification completed.",
"data": {
"domain": "example.com",
"dkim_status": "valid",
"cname_status": "valid",
"ownership_verified": "true"
}
}

Authorizations

Authorization
string
header
required

API key for authentication. Format: Bearer {api_key}

Path Parameters

domain
string
required

The domain name to verify

Example:

"example.com"

Response

Domain verification completed

Response containing domain verification results

message
string
required

Human-readable response message

Example:

"Domain verification completed."

data
object
required

Domain verification status and DNS details