Skip to Content

Person identity from email

Find identity of a person from their email address.

Billable OperationProviderBilling Mode
Docs
Connection
Docs
Cost per operation
Docs
hunter-reverse-email-lookup
P
HunterMail
On Success
Managed, User

2.00 credits

findymail-reverse-email-lookup
P
FindyMail
On Success
Managed, User

2.00 credits

crustdata-reverse-email-lookup
P
Crustdata
On Success
Managed, User

5.00 credits

Input Fields

string
email

Output Fields

string
profile_url
string
job_title
string
company_name
string
company_profile_url
string
company_website_url

const options = {
  method: 'POST',
  headers: {'content-type': 'application/json', authorization: 'Bearer <TOKEN>'},
  body: JSON.stringify({
    config: {environment: 'production'},
    pipes: [{pipe_id: 'people:identity:email:waterfall@1'}],
    input: [{id: '1', work_email: 'john@pipe0.com'}]
  })
};

fetch('https://api.pipe0.com/v1/pipes/run', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));