POST
/email/discoverDiscover Email
Find a professional email address given a person's name and company domain.
POSThttps://www.startuphub.ai/api/v1/email/discover
Request
curl -X POST "https://www.startuphub.ai/api/v1/email/discover" \
-H "Authorization: Bearer sk_live_..." \
-H "Content-Type: application/json" \
-d '{"firstName":"Dario","lastName":"Amodei","domain":"anthropic.com"}'Parameters
firstNamestringrequiredPerson's first name
lastNamestringrequiredPerson's last name
domainstringrequiredCompany email domain (e.g. anthropic.com)
Response
json
{
"found": true,
"email": "[email protected]",
"domain": "anthropic.com",
"totalCombinationsTested": 12
}