/v1/email-finderAuth1crFind Email
Start 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
| Parameter | Type | Required | Description |
|---|---|---|---|
firstName | string | Required | Person's first name |
lastName | string | Required | Person's last name |
domain | string | Required | Company domain (e.g. stripe.com) |
middleName | string | Optional | Middle name for better accuracy |
firstNamestring*Person's first name
lastNamestring*Person's last name
domainstring*Company domain (e.g. stripe.com)
middleNamestringoptMiddle name for better accuracy
curl -X POST "https://api.verifox.ai/v1/email-finder" \
-H "X-API-Key: vfx_your_api_key" \
-H "Content-Type: application/json" \
-d '{"firstName": "John", "lastName": "Doe", "domain": "stripe.com"}'{
"jobId": "69d78ba337e519a86c186262"
}