🔥 One Payment. Unlimited Verifications for Life – Lifetime Deal Now Live!
VerifyFoxs

API Documentation

Everything you need to integrate our email verification service

Getting Started

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

API Endpoints

POST /api/verify

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"}'
                                

Response Format

{
  "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"
}