Find work email addresses in a waterfall motion.
Billable Operation | Provider | Billing Mode Docs | Connection Docs | Cost per operation Docs |
---|---|---|---|---|
leadmagic-get-work-email | P LeadMagic | On Success | Managed, User | 0.50 credits |
icypeas-get-work-email | P Icypeas | On Success | Managed, User | 0.50 credits |
prospeo-get-work-email | P Prospeo | On Success | Managed, User | 1.00 credits |
findymail-get-work-email | P FindyMail | On Success | Managed, User | 1.00 credits |
const options = {
method: 'POST',
headers: {'content-type': 'application/json', authorization: 'Bearer <TOKEN>'},
body: JSON.stringify({
config: {environment: 'production'},
pipes: [{pipe_id: 'people:workemail:waterfall@1'}],
input: [{id: '1', name: 'John Doe', company_website_url: 'https://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));