Skip to Content

Validate Email

Verify email address against various factors, including syntax, domain, and server existence, to ensure it is deliverable and active.

Billable OperationProviderBilling Mode
Docs
Connection
Docs
Cost per operation
Docs
zerobounce-validate-email
P
ZeroBounce
Always
Managed, User

0.30 credits

Input Fields

string
email

Output Fields

string
zerobounce_validation_status
json
zerobounce_validation_match

const options = {
  method: 'POST',
  headers: {'content-type': 'application/json', authorization: 'Bearer <TOKEN>'},
  body: JSON.stringify({
    config: {environment: 'production'},
    pipes: [{pipe_id: 'people:email:validate:zerobounce@2'}],
    input: [{id: '1', email: 'jane@pipe0.com'}]
  })
};

fetch('https://api.pipe0.com/v1/pipes/run', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));