Verimail API: Validate Your Email List in Seconds

Are you tired of sending emails to invalid or non-existent email addresses? Verimail is here to help! Verimail is a powerful and easy-to-use email verification API that can validate your entire email list in seconds. With Verimail, you can ensure that your emails get delivered to the correct inbox every time.

Getting Started

To start using Verimail, you will need an API key. You can sign up for a free account at https://verimail.io/ and receive your API key instantly.

Validating an Email Address

To validate an email address, simply make a GET request to the Verimail API endpoint with the email address you want to validate and your API key.

const apiKey = 'YOUR_API_KEY';
const email = 'example@example.com';
const url = `https://api.verimail.io/v3/verify?email=${email}&key=${apiKey}`;
fetch(url)
  .then(response => response.json())
  .then(data => {
    if (data.success) {
      // email address is valid
    } else {
      // email address is invalid
    }
  });

Validating Multiple Email Addresses

To validate multiple email addresses, you can make a POST request to the Verimail API endpoint with an array of email addresses and your API key.

const apiKey = 'YOUR_API_KEY';
const emails = ['example1@example.com', 'example2@example.com'];
const url = `https://api.verimail.io/v3/verify?key=${apiKey}`;
fetch(url, {
  method: 'POST',
  body: JSON.stringify(emails),
  headers: {
    'Content-Type': 'application/json'
  }
})
  .then(response => response.json())
  .then(data => {
    // data will be an array of email validation results
  });

Conclusion

Verimail is a powerful email validation tool that can help you ensure that your emails get delivered to the correct inbox every time. With its easy-to-use API and powerful features, Verimail is the perfect solution for businesses of all sizes. So why wait? Sign up for a free account today and start using Verimail to validate your email list in seconds!

Related APIs