curl -X POST https://www.unosend.co/api/v1/validate/email \ -H "Authorization: Bearer un_your_api_key" \ -H "Content-Type: application/json" \ -d '{ "email": "[email protected]", "check_catch_all": true }'
{ "email": "[email protected]", "valid": true, "score": 90, "reason": null, "checks": { "syntax": true, "mx_records": true, "disposable": false, "role_based": false, "free_provider": false, "catch_all": false, "smtp_valid": null }, "details": { "local_part": "john", "domain": "company.com", "mx_hosts": ["mail.company.com"], "suggestion": null } }
Validate a single email address with comprehensive checks.
Show Check results
Show Email details