Skip to Content

Check If Work Email

Check if the email provider is part a large list of known providers for personal emails.

Billable OperationProviderBilling Mode
Docs
Connection
Docs
Cost per operation
Docs
pipe0-is-workemail-check
P
pipe0
Always
Managed

0.00 credits

Input Fields

email
string, required

Output Fields

is_work_email
boolean

const result = await fetch("https://api.pipe0.com/v1/pipes/run", {
  method: "POST",
  headers: {
    "Authorization": `Bearer ${API_KEY}`,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    pipes: [{ 
      pipe_id: "people:email:iswork@1", 
    }],
    input: []
  })
});