MailVex provides a high-performance REST API for detecting disposable emails, fake signups, and high-risk IP addresses in real-time.
Make a GET request to the /verify endpoint with an email address.
curl "https://api.mailvex.com/v1/verify?email=test@example.com" \ -H "Authorization: Bearer YOUR_API_KEY"
The API returns a JSON object containing the risk analysis.
{
"success": true,
"data": {
"email": "test@example.com",
"risk_score": 10,
"verdict": "allow"
}
}