Production-Ready Utility APIs

Fast, reliable APIs for email validation, IP geolocation, IBAN verification, and code generation. Free to use. No authentication required.

← Back to all APIs

Email Validation API

POST /api/v1/validate/email

Validates email addresses with comprehensive checks including syntax validation, domain verification, MX record lookup, and disposable email detection. Returns a structured JSON result with individual pass/fail flags for each check.

Request Body

email string required

The email address to validate

Example Request

{ "email": "[email protected]" }

Response

{ "validationResult": { "email": "[email protected]", "isSyntaxValid": true, "isDomainValid": true, "mxRecordsFound": true, "isDisposable": false } }

Response Fields

isSyntaxValid boolean

Whether the email has valid syntax format

isDomainValid boolean

Whether the domain has valid DNS records (A or MX records)

mxRecordsFound boolean

Whether MX (Mail Exchange) records exist for the domain

isDisposable boolean

Whether the email is from a known disposable/temporary email provider

Try it out