Live API Testing Playground

Test Email Validation API Instantly

Experience the full email validation stack with real-time results including MX records, SMTP verification, disposable detection, name extraction, and domain intelligence.

πŸ“§ Test with sample emails:

{
  "loading": "..."
}

Complete Validation

Syntax, MX, SMTP, format safety, and provider intelligence in one response.

Lightning Fast

See a production-style JSON response instantly so integration details are easy to verify.

Advanced Signals

Test disposable detection, name extraction, domain age, and registration insights.

What You Can Test

βœ‰οΈ
Valid Emails
Real inboxes
πŸ—‘οΈ
Disposable
Temporary addresses
✏️
Typos
Common mistakes
πŸ‘€
Name Detection
Extract contact names
❌
Invalid
Bad format or domain
πŸ†“
Free Providers
Gmail, Yahoo, and more
πŸ“…
Domain Age
Registration history
πŸ”
MX Records
Mail server checks

Sample Emails to Test

Valid Emails

  • test@gmail.com
  • user@outlook.com
  • contact@example.com

Risky or Invalid

  • test@yopmail.com (disposable)
  • test@gmial.com (typo)
  • john.doe@example.com (name detection)

API Response Fields

email

The email address being validated

validMx

MX record validation result

isDisposable

Temporary email detection

validSmtp

SMTP connectivity check

validFormat

Email format validation

isFree

Free provider detection

detectedName

Extracted first and last name

domainAge

Domain creation date and age

domainRegistration

Domain registration details

Ready to Integrate Email Validation?

Start validating emails in production today

Professional plans starting at $29/month β€’ Flexible billing

Quick Integration Examples

πŸ’» cURL

# Basic validation
curl -X GET "https://api.email-check.app/v1-get-email-details"
-H "accept: application/json"
-H "x-api-key: your-api-key"
-G -d "email=test@example.com"
-d "verifyMx=true"
-d "verifySmtp=true"
-d "detectName=true"

✨ JavaScript

/* Using fetch API */
const params = new URLSearchParams({
  email: 'test@example.com',
  verifyMx: 'true',
  verifySmtp: 'true',
  detectName: 'true'
});

const response = await fetch(
  'https://api.email-check.app/v1-get-email-details?' + params,
  {
    headers: {
      accept: 'application/json',
      'x-api-key': 'your-api-key',
    },
  },
);

const result = await response.json();

Why Developers Choose Email-Check.app

⚑
25ms
Average Response Time
🌍
240+
Countries Supported
πŸ”’
99.9%
Uptime SLA
πŸ“Š
500M+
Emails Validated

Complete Feature Set

βœ“Real-time validation
βœ“SMTP verification
βœ“MX record check
βœ“Disposable detection
βœ“Typo correction
βœ“Geographic checks
βœ“Name extraction
βœ“Bulk validation
βœ“Domain age lookup
βœ“Role account detection
βœ“Provider detection
βœ“RESTful API