Single Email
Verify Signle Email
GET
https://api.saino.io/api/apis/email-cleaning/verify-single
This Endpoint you will used for verifying single email id
Query Parameters
Name
Type
Description
string
Email id which you want to verify.
Headers
Name
Type
Description
token
string
The token provided by the saino application
{
"data":{
"email":"[email protected]",
"free_email":"true",
"result":"Safe to Send / Unsafe to Send",
"status":"Deliverable"
},
"status":"success"
}
Examples
var axios = require('axios');
var config = {
method: 'get',
url: 'https://api.saino.io/api/apis/email-cleaning/[email protected]',
headers: {
'token': '7yq7x1hlydj8hyxccfjo130m7usey6g6dyrdmc61al5411m==/twidh21609584683074'
}
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});
Last updated
Was this helpful?