/v1/email-validation/:emailAuth1crVerify Email (GET)
Verify a single email by passing it as a URL parameter. Returns comprehensive validation results including SMTP checks, disposable detection, and deliverability status.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
email | string | Required | Email address to verify |
emailstring*Email address to verify
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
proxy | boolean | Optional · false | Use proxy for SMTP check |
proxybooleanoptUse proxy for SMTP check
curl -X GET "https://api.verifox.ai/v1/email-validation/john@example.com" \
-H "X-API-Key: vfx_your_api_key"{
"email": "john@example.com",
"domain": "example.com",
"isValid": true,
"reachable": "safe",
"syntax": true,
"smtp": {
"hostExists": true,
"fullInbox": false,
"catchAll": false,
"deliverable": true,
"disabled": false
},
"mx": {
"records": ["gmail-smtp-in.l.google.com.", "alt1.gmail-smtp-in.l.google.com."],
"smtpProvider": "Google",
"domainAgeDays": 11196,
"domainCreated": "1995-08-13",
"validatedHost": "gmail-smtp-in.l.google.com.",
"hasSPF": true,
"hasDMARC": true,
"hasDKIM": false
},
"isFree": false,
"isRole": false,
"isDisposable": false,
"hasGravatar": true,
"suggestion": null,
"source": "turnix-email",
"verifiedAt": "2026-03-31T10:30:00Z",
"score": 92
}