Skip to main content
POST
/
person-email
Find a person's work email from name and domain
curl --request POST \
  --url https://api.tryhuntr.com/person-email \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "name": "Patrick Collison",
  "domain": "stripe.com"
}
'
{
  "success": true,
  "request_id": "req_1746123456_pe1x2y",
  "name": "Patrick Collison",
  "domain": "stripe.com",
  "result": {
    "email": "patrick@stripe.com",
    "certainty": "high",
    "status": "FOUND"
  },
  "price": 0.012,
  "credits_remaining": 4.988
}

Authorizations

x-api-key
string
header
required

Your Huntr API key. Get one at tryhuntr.com. Pass as x-api-key header on all authenticated requests.

Body

application/json
name
string
required

Full name of the person, e.g. Patrick Collison.

domain
string
required

Company domain, e.g. stripe.com. URLs and www. prefixes are normalized.

Response

Email lookup complete.

success
boolean
request_id
string
name
string

Name submitted in the request.

domain
string

Normalized company domain.

result
object
price
number

$0.012 when an email is found; 0 when not found.

credits_remaining
number