MailVexGetting StartedIntroduction

Introduction

MailVex provides a high-performance REST API for detecting disposable emails, fake signups, and high-risk IP addresses in real-time.

Note: You need an API key to access endpoints. You can generate one in your Dashboard Settings.

Quick Start

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"

Response Format

The API returns a JSON object containing the risk analysis.

{
  "success": true,
  "data": {
    "email": "test@example.com",
    "risk_score": 10,
    "verdict": "allow"
  }
}
Edit this page on GitHub