Skip to Content

Mobile Number From Work Email (Waterfall)

Find mobile phone number for any prospect by using their work email address as input.

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

2.00 credits

Input Fields

string
work_email

Output Fields

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