Everything you need to integrate our email verification service
To get started with our API, you'll need an API key. You can get one by signing up for an account.
Authorization: Bearer YOUR_API_KEY
Verify a single email address
curl -X POST https://api.verifyfoxs.com/verify \ -H "Content-Type: application/json" \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '{"email": "user@example.com"}'
{ "valid": true, "email": "user@example.com", "score": 0.95, "checks": { "format": true, "mx": true, "smtp": true, "disposable": false, "role_account": false }, "message": "Email address is valid and safe to use" }