The `/api/pro` endpoint allows users to validate an email and get back its status (valid or invalid) while tracking the user's credits. You need to pass the following headers and query parameters to interact with the API. To get your API Key, head to Dashboard
POST /api/pro
api_token: Your_API_Token
api_key: Your_API_Key
email: The email to be validated
const axios = require('axios');
axios.post('/api/pro', null, {
headers: {
api_token: 'your_api_token',
api_key: 'your_api_key'
},
params: {
email: 'test@example.com'
}
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error(error);
});
import axios from 'axios';
const validateEmail = async () => {
try {
const response = await axios.post('/api/pro', null, {
headers: {
api_token: 'your_api_token',
api_key: 'your_api_key'
},
params: {
email: 'test@example.com'
}
});
console.log(response.data);
} catch (error) {
console.error(error);
}
};
validateEmail();
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "/api/pro?email=test@example.com");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'api_token: your_api_token',
'api_key: your_api_key'
));
$response = curl_exec($ch);
if (curl_errno($ch)) {
echo 'Error:' . curl_error($ch);
} else {
echo $response;
}
curl_close($ch);
?>
curl -X POST "/api/pro?email=test@example.com" \
-H "api_token: your_api_token" \
-H "api_key: your_api_key"
{
"email": "test@example.com",
"status": "valid"
}
{
"error": "Invalid email"
}
If you have any more queries, please refer to our FAQs.