Email Verification
The Email Verification API allows you to verify an email.
Last updated
Was this helpful?
Was this helpful?
import requests
url = "https://api.exactbuyer.com/v1/email-verification"
headers = {
'X-API-Key': 'YOUR_API_KEY'
}
params = {
'email': 'edan@exactbuyer.com',
}
response = requests.get(
url,
headers=headers,
params=params)
print(response.text)curl --location --request GET 'https://api.exactbuyer.com/v1/email-verification?email=edan@exactbuyer.com' \
--header 'X-API-Key: YOUR_API_KEY'const myHeaders = new Headers();
myHeaders.append("X-API-Key", "YOUR_API_KEY");
const requestOptions = {
method: 'GET',
headers: myHeaders,
redirect: 'follow'
};
fetch("https://api.exactbuyer.com/v1/email-verification?edan=edan@exactbuyer.com", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));