Skip to Content

Mobile Number From LinkedIn Profile (Waterfall)

Find mobile phone number for any prospect using multiple data providers in a waterfall motion.

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

2.00 credits

prospeo-mobile-from-profile
P
Prospeo
On Success
Managed, User

5.00 credits

findymail-mobile-from-profile
P
FindyMail
On Success
Managed, User

7.00 credits

Input Fields

string
profile_url

Output Fields


Explained on
YouTube logologo-dark

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

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