Find work email addresses from B2B profile.
| Billable Operation | Provider | Billing Mode Docs | Connection Docs | Cost per operation Docs |
|---|---|---|---|---|
hunter-workemail-profileurl | P HunterMail | On Success | Managed, User | 1.00 credits |
leadmagic-workemail-profileurl | P LeadMagic | On Success | Managed, User | 2.00 credits |
findymail-workemail-profileurl | P FindyMail | On Success | Managed, User | 2.00 credits |
crustdata-workemail-profileurl | P Crustdata | On Success | Managed, User | 3.00 credits |
clado-workemail-profileurl | P Clado | On Success | Managed, User | 3.50 credits |
const options = {
method: 'POST',
headers: {'content-type': 'application/json', authorization: 'Bearer <TOKEN>'},
body: JSON.stringify({
config: {environment: 'production'},
pipes: [{pipe_id: 'people:workemail:profileurl:waterfall@1'}],
input: [{id: '1', profile_url: 'https://linkedin.com/li/john-123abc'}]
})
};
fetch('https://api.pipe0.com/v1/pipes/run', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));