Verify Email (GET)
/v1/email-validation/:emailVerify a single email by passing it as a URL parameter. Returns comprehensive validation results including SMTP checks, disposable detection, and deliverability status.
Path Parameters
emailstring*Email address to verify
Query Parameters
proxybooleanoptUse a proxy for the SMTP check
1curl -X GET "https://api.verifox.ai/v1/email-validation/[email protected]" \2 -H "X-API-Key: vfx_your_api_key"1{2 "email": "[email protected]",3 "domain": "example.com",4 "isValid": true,5 "reachable": "safe",6 "syntax": true,7 "smtp": {8 "hostExists": true,9 "fullInbox": false,10 "catchAll": false,11 "deliverable": true,12 "disabled": false13 },14 "mx": {15 "records": ["gmail-smtp-in.l.google.com.", "alt1.gmail-smtp-in.l.google.com."],16 "smtpProvider": "Google",17 "domainAgeDays": 11196,18 "domainCreated": "1995-08-13",19 "validatedHost": "gmail-smtp-in.l.google.com.",20 "hasSPF": true,21 "hasDMARC": true,22 "hasDKIM": false23 },24 "isFree": false,25 "isRole": false,26 "isDisposable": false,27 "hasGravatar": true,28 "suggestion": null,29 "source": "turnix-email",30 "verifiedAt": "2026-03-31T10:30:00Z",31 "score": 9232}