ExactBuyer Docs
1.0.0
Search
⌃K

Email Verification

The Email Verification API allows you to verify an email.
To get more detail about the API parameters, response types, and sample calls, click the arrow to the right on the card below.
get
https://api.exactbuyer.com
/v1/email-verification
Verify an email
API Response
Email Verification
{
"catch_all": false,
"verified": true
}

Examples

Verify email

Python
cURL
Javascript
import requests
url = "https://api.exactbuyer.com/v1/email-verification"
headers = {
'X-API-Key': 'YOUR_API_KEY'
}
params = {
'email': '[email protected]',
}
response = requests.get(
url,
headers=headers,
params=params)
print(response.text)
curl --location --request GET 'https://api.exactbuyer.com/v1/[email protected]' \
--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 protected]", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));