Complete guide to integrate email validation into your application using our powerful REST API
All API requests should be made to this base URL
https://api.verimailx.comGet your API key and start validating emails in minutes
Sign up and navigate to the API Keys section in your dashboard to generate your key. Your API key starts with vk_.
X-API-Key: vk_your_api_key_hereSend a POST request to validate an email:
curl -X POST https://api.verimailx.com/validate \
-H "X-API-Key: vk_your_api_key" \
-H "Content-Type: application/json" \
-d '{"email": "test@example.com"}'You'll receive a JSON response with detailed validation results:
{
"email": "test@example.com",
"result": "valid",
"deliverability_score": 95,
"is_syntax_valid": true,
"is_dns_valid": true,
"is_mx_valid": true,
"is_smtp_valid": true,
"is_disposable": false,
"is_role_based": false,
"mx_hosts": ["mail.example.com"]
}