Find Email

Find an email address using first name, last name and domain information

POST
/v1/findEmail
/v1/findEmail

The Authorization access token

Authorization

x-api-key<token>

API key for authentication

In: header

Request Body

application/jsonRequired

firstName
Required
string

First name of the person

lastName
Required
string

Last name of the person

domain
Required
string

Company domain name

curl -X POST "https://api.hatchhq.ai/v1/findEmail" \
  -H "x-api-key: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "firstName": "Nandu",
    "lastName": "Vijay",
    "domain": "aabasoft.com"
  }'

Successfully found email

{
  "email": "nanduvijay@aabasoft.com"
}