PeopleGetMobileNumberWaterfall@1
Mobile Number Lookup
Retrieves a person's mobile phone number using multiple data providers in sequence.
Personal Data
Phone
Provider Options
Provider | Credentials | Cost per record |
---|---|---|
P LeadMagic | Managed User | 2 credits |
P FindyMail | Managed User | 7 credits |
Input Fields
linkedInProfileUrl
string
Required
Output Fields
mobilePhoneNumber
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: "PeopleGetMobileNumberWaterfall@1",
// passing a config is optional
config: {
"providers": [
{
"provider": "leadmagic"
},
{
"provider": "findymail"
}
],
"inputFields": {
"linkedInProfileUrl": {
"alias": ""
}
},
"outputFields": {
"mobilePhoneNumber": {
"alias": ""
}
}
}
}],
input: []
})
});
Last updated on