Enter a domain, URL, IP, email, or record and get a focused result without setup.
Complete email authentication and deliverability analysis with SPF, DKIM, DMARC auditing.
Use the browser tool for a fast answer, then move the same logic into scripts, monitoring, or product flows when it becomes repeatable.
Enter a domain, URL, IP, email, or record and get a focused result without setup.
Outputs highlight statuses, risks, records, and next actions instead of raw provider noise.
Use the request and response examples to turn a one-off check into an API call or recipe.
Used by people at amazing companies
Each page is shaped around a practical operational question, not just a raw lookup.
See the current DNS, registration, security, pricing, or reputation evidence.
Compare the result with related checks so the next move is easier to trust.
Copy examples, open linked tools, or move into API documentation when you need scale.
Transparent docs, authenticated requests, and visible reliability details make it easier to evaluate DomScan before you ship.
OpenAPI, Swagger, Postman, CLI, SDK, and MCP links are one click away.
Authenticated endpoints use API keys with clear credit costs before you call them.
Start with 10,000 monthly credits and upgrade only when usage grows.
Start from the curl and HTTP samples, then map the parameters into your application code.
Add SPF record to authorize email senders
Configure DKIM signing for your email service
Add DMARC record to specify email authentication policy
Address blacklist issues
curl -s "https://domscan.net/v1/recipes/email-deliverability?domain=example.com" -H "X-API-Key: $DOMSCAN_API_KEY"
{
"success": true,
"data": {
"score": 88,
"grade": "A",
"blacklist_status": {
"clean": true,
"listed_on": []
},
"authentication": {
"spf": {
"status": "pass"
},
"dkim": {
"status": "pass",
"selectors_found": [
"google",
"selector1"
]
},
"dmarc": {
"status": "pass",
"policy": "quarantine"
}
},
"infrastructure": {
"mx_servers": [
"aspmx.l.google.com"
]
},
"action_items": [
{
"priority": "low",
"action": "Move DMARC toward reject",
"details": "A stricter policy can reduce spoofing risk after monitoring."
}
]
},
"meta": {
"recipe_name": "email-deliverability",
"credits_used": 8,
"credits_saved": 7,
"duration_ms": 724
},
"errors": []
}
The browser experience previews DomScan's structured endpoints, so teams can validate a use case before writing code.