Find Email
Find an email address using first name, last name and domain information OR LinkedIn profile URL
POST/v1/findEmailSend
Server URL
https://api.hatchhq.ai
Headers
x-api-key *string
Body
firstName*string
lastName*string
domain*string
Authorization
In: header
Request Body
application/jsonRequiredFirst name of the person
Last name of the person
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
Response
{
"email": "nanduvijay@aabasoft.com"
}TypeScript
export interface Response {
email: string;
}Find an email address using LinkedIn profile URL.
- Simply replace firstName, lastName, and domain with linkedinUrl in the request body
🧾 Example Request Body
{
"linkedinUrl": "https://www.linkedin.com/in/nanduvijay/"
}
Note: Use either linkedinUrl or firstName + lastName + domain — not both in the same request.