Find Email
/v1/email-finderStart an email finder job. Generates all possible email permutations for the given name + domain, then verifies each via SMTP. Returns a job ID for polling.
Request Body
firstNamestring*Person's first name
lastNamestring*Person's last name
domainstring*Company domain (e.g. stripe.com)
middleNamestringoptMiddle name for better accuracy
1curl -X POST "https://api.verifox.ai/v1/email-finder" \2 -H "X-API-Key: vfx_your_api_key" \3 -H "Content-Type: application/json" \4 -d '{"firstName": "John", "lastName": "Doe", "domain": "stripe.com"}'1{2 "jobId": "69d78ba337e519a86c186262"3}