PeopleGetWorkEmailWaterfall@1
Find Work Email
Discovers professional email addresses using name and company information through multiple provider services.
Email
Provider Options
Provider | Credentials | Cost per record |
---|---|---|
P LeadMagic | Managed User | 1 credits |
P FindyMail | Managed User | 4 credits |
Input Fields
name
string
Required
companyWebsiteURL
string
Required
companyName
string
Optional
Output Fields
workEmail
string
Code Example
const result = await fetch("https://api.pipe0.com/v1/run/sync", {
method: "POST",
headers: {
"Authorization": `Bearer ${API_KEY}`,
},
body: JSON.stringify({
pipes: [{
name: "PeopleGetWorkEmailWaterfall@1",
// passing a config is optional
config: {
"providers": [
{
"provider": "leadmagic"
},
{
"provider": "findymail"
}
],
"inputFields": {
"name": {
"alias": ""
},
"companyWebsiteURL": {
"alias": ""
},
"companyName": {
"alias": ""
}
},
"outputFields": {
"workEmail": {
"alias": ""
}
}
}
}],
input: []
})
});
Last updated on