XEmailVerify BULK API Documentation

XEmailVerify BULK API Documentation

This document contains the Bulk API documentation to be used by any programming language, some of the examples and the screenshots have been added.



Facing issues in API implementation in your project, reach out to


The bulk verification API URL will be in the below format:

Type: GET
You need to loop through the array and send it in single request format and make requests through through looping it

Parameters:
API will accept two parameters to verify the email Id
  1. Token: A valid token key
  2. Email : An email which needs to be validated

SAMPLE CODE BELOW
var express = require("express");
var app = express();
const http = require("http");
const server = http.createServer(app);
app.use(express.static(__dirname));
const fetch = require("node-fetch");

// Api Url
// Bulk Api Key
var apiKey = "YOUR-API-KEY";
// List of Emails in JSON
var EmailList = [
  {id: 1,Email: "1prabhanshu@gmail.com",},
  {id: 2,Email: "abhinani24@gmail.com",},
  {id: 3,Email: "abhishekti478@gmail.com",},
  {id: 4,Email: "aditya.ranjan09@gmail.com",},
  {id: 5,Email: "akrajawat20@gmail.com",},
];
// Function to itrerate through list of Emails
async function ConsoleResult() {
  // Loop through the list of Emails
  for (var i = 0; i < EmailList.length; i++) {
    var url = apiUrl + apiKey + "/" + EmailList[i].Email;
    await fetch(url)
      .then((res) => res.json())
      .then(async (json) => {
        // Displaying the APIs Results
        console.log(json);
      })
      .catch((err) => {
        console.log(err);
      });
  }
}

// Function Call
ConsoleResult();

const PORT = process.env.PORT || 3000;
server.listen(PORT, () => {
  console.log("listening on http://localhost:" + PORT);
});


Facing issues in API implementation in your project, reach out to


    • Related Articles

    • XEmailVerify API Documentation

      This document contains the API documentation to be used by any programming language, some of the examples and the screenshots have been added. Facing issues in API implementation in your project, reach out to support@xemailverify.com Single & Bulk ...
    • How to do Bulk Email Verification in XEmailVerify

      To achieve bulk email verification, follow the below steps, 1. Login to your dashboard 2. Inside LOGIN VERIFICATION section, click BULK EMAIL VERIFICATION 3. Upload your file and click on Start button to initiate the next process Bulk Email ...
    • Download file Bulk Email Verification

      To download the file after bulk email verification, please follow the below steps; 1. After bulk verification, a download link will get highlighted 2. Click on download link to download the verified file
    • View Result of Bulk Verification

      To view the result of the BULK EMAIL verification, please follow the below steps. 1. Once the verification is complete, a bar graph will generate automatically 2. Click on detailed analysis to check in detail Detailed Analysis Bulk Email Verification
    • How to login to XEmailVerify App

      To login XEmailVerify App, please follow the below steps  Please visit: https://app.xemailverify.com/login with your web browser Enter your login credentials to login