Discover Email
POST/email/discover

Discover 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

firstNamestringrequired

Person's first name

lastNamestringrequired

Person's last name

domainstringrequired

Company email domain (e.g. anthropic.com)

Response

json
{
  "found": true,
  "email": "[email protected]",
  "domain": "anthropic.com",
  "totalCombinationsTested": 12
}