A free and lightweight API to verify email addresses, detect disposable domains, and check MX records.
Contact: temirlan.basitov@gmail.com
curl -X POST https://email-verifier-api-production-12ee.up.railway.app/api/verify \ -H "Content-Type: application/json" \ -H "X-API-KEY: temix" \ -d '{"email": "user@example.com"}'
POST https://email-verifier-api-production-12ee.up.railway.app/api/verify Header: X-API-KEY: temix Body: { "email": "user@example.com" }
{ "validFormat": true, "hasMX": true, "isDisposable": false, "domain": "example.com" }