Skip to Content

Check If Work Email

Analyzes an email address to determine if it's a professional or personal account.

ProviderBilling Mode
Docs
CredentialsCost per record
Docs
P
pipe0
n/a
Managed

0 credits

Input Fields

email
string, required

Output Fields

is_work_email
boolean

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:is:workemail@1", 
    }],
    input: []
  })
});