Find mobile phone number for any prospect using multiple data providers in a waterfall motion.
Billable Operation | Provider | Billing 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 |
const options = {
method: 'POST',
headers: {'content-type': 'application/json', authorization: 'Bearer <TOKEN>'},
body: JSON.stringify({
config: {environment: 'production'},
pipes: [{pipe_id: 'people:mobilenumber:professionalprofile:waterfall@1'}],
input: [{id: '1', professional_profile_url: 'https://linkedin.com/li/john'}]
})
};
fetch('https://api.pipe0.com/v1/pipes/run', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));