Skip to Content

Personal Email From LinkedIn URL (Waterfall)

Find the personal email address of a prospect by using a professional profile URL as input.

Billable OperationProviderBilling Mode
Docs
Connection
Docs
Cost per operation
Docs
clado-personal-email-from-profile
P
Clado
Always
Managed, User

2.00 credits

leadmagic-personal-email-from-profile
P
LeadMagic
On Success
Managed, User

1.00 credits

Input Fields

string
profile_url

Output Fields

json
alternate_personal_emails
string
personal_email

const options = {
  method: 'POST',
  headers: {'content-type': 'application/json', authorization: 'Bearer <TOKEN>'},
  body: JSON.stringify({
    config: {environment: 'production'},
    pipes: [{pipe_id: 'people:personalemail:profile:waterfall@1'}],
    input: [{id: '1', profile_url: 'https://linkedin.com/in/jane-doe-uth6-dk'}]
  })
};

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