Skip to Content

Mobile Number From Work Email (Waterfall)

Retrieves a person's mobile phone number from their work email address. This pipe uses multiple data providers in sequence.

ProviderBilling Mode
Docs
CredentialsCost per record
Docs
P
LeadMagic
On Success
Managed

2 credits

Input Fields

work_email
string, required

Output Fields

mobile_number
string

const result = await fetch("https://api.pipe0.com/v1/run/sync", {
  method: "POST",
  headers: {
    "Authorization": `Bearer ${API_KEY}`,
  },
  body: JSON.stringify({
    pipes: [{ 
      pipe_id: "people:mobilenumber:workemail:waterfall@1", 
    }],
    input: []
  })
});