Query any domain's DNS records, WHOIS data, email security configuration, and global propagation status — in seconds.
Professional-grade tools for developers, sysadmins, and security researchers.
SPF, DKIM, and DMARC protect your domain from email spoofing and phishing attacks. We check all three.
Clean, documented JSON API endpoints. No authentication required for basic usage.
{
"success": true,
"data": {
"domain": "example.com",
"records": {
"A": [
{
"type": "A",
"host": "example.com",
"ip": "93.184.216.34",
"ttl": 3600
}
],
"MX": [
{
"type": "MX",
"host": "example.com",
"target": "mail.example.com",
"pri": 10,
"ttl": 3600
}
]
},
"security": {
"spf": { "found": true, "valid": true },
"dkim": { "found": false, "valid": false },
"dmarc": { "found": true, "valid": true },
"email_security_score": 60
}
},
"meta": { "response_time_ms": 142 }
}