Skip to Content

LinkedIn URL From Email (Waterfall)

Find the URL for a prospect's LinkedIn profile from their personal or professional email address.

Billable OperationProviderBilling Mode
Docs
Connection
Docs
Cost per operation
Docs
leadmagic-profile-url-from-email
P
LeadMagic
On Success
Managed, User

3.50 credits

Input Fields

Field group

At Least one of the following fields is required
string
email
string
work_email

Output Fields

string
professional_profile_url

const options = {
  method: 'POST',
  headers: {'content-type': 'application/json', authorization: 'Bearer <TOKEN>'},
  body: JSON.stringify({
    config: {environment: 'production'},
    pipes: [{pipe_id: 'people:professionalprofileurl:email:waterfall@1'}],
    input: [{id: '1', 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));