Check SPF, DKIM, DMARC for any domain — free, instant, no signup
/api/v1/check/{domain} — integrate deliverability checks into your CI/CD, dashboards, or onboarding flows.# Check a domain's email deliverability curl https://korpo.pro/api/v1/check/example.com # Pretty-print the JSON response curl -s https://korpo.pro/api/v1/check/example.com | jq . # Extract just the score curl -s https://korpo.pro/api/v1/check/example.com \ | jq '.score'
{
"domain": "example.com",
"score": 82,
"spf": {
"found": true,
"record": "v=spf1 include:_spf.google.com -all",
"all_mechanism": "-all",
"issues": []
},
"dkim": {
"found": true,
"selectors_found": ["default"],
"issues": []
},
"dmarc": {
"found": true,
"record": "v=DMARC1; p=reject; rua=mailto:dmarc@example.com",
"policy": "reject",
"issues": []
},
"issues": []
}