latestOpenAPI 3.0.32026-08-08360156.4 KB

ae7fddf16bf9

Email Finder

Find from name

Find someone's email from name and company (website or name). Uses one finder credit if a verified email is found.

post/api/search/name

Request body

namestring required

Person's full name

domainstring required

Company domain (best) or company name

webhook_urlstring

Webhook URL that will receive the result as callback. If submitted, email search will happen in the background and notify this URL upon completion.

Example request

{
  "name": "John Doe",
  "domain": "website.com"
}

Response

OR

Example response

{
  "contact": {
    "name": "John Doe",
    "domain": "website.com",
    "email": "john@website.com"
  }
}