EmailVerifier API

A free and lightweight API to verify email addresses, detect disposable domains, and check MX records.

Contact: temirlan.basitov@gmail.com

Example Usage (curl)

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"}'

API Endpoint

POST https://email-verifier-api-production-12ee.up.railway.app/api/verify
Header: X-API-KEY: temix
Body: { "email": "user@example.com" }

Example Response

{
  "validFormat": true,
  "hasMX": true,
  "isDisposable": false,
  "domain": "example.com"
}