ExactBuyer Docs
  • Getting Started
    • Authentication
    • Rate Limiting
    • Errors
    • OpenAPI Specification
  • Contact Enrichment
    • Enrichment
    • Bulk Enrichment
  • Company Enrichment
  • Company Enrichment
  • Prospector API
    • Contact Search
  • Recommendations
    • Similar Contacts
    • Similar Companies
  • Email Verification
  • Support
    • Frequently Asked Questions
    • Schedule a call
Powered by GitBook
On this page
  • Verify an email
  • Examples

Was this helpful?

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.

Verify an email

GET https://api.exactbuyer.com/v1/email-verification

This endpoint allows you to verify an email.

Query Parameters

Name
Type
Description

email*

string

The email to verify.

Headers

Name
Type
Description

X-API-Key

string

Your API key

{
    "catch_all": false,
    "verified": true
}
API Response
Email Verification
{
    "catch_all": false,
    "verified": true
}

Examples

Verify email

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));
PreviousSimilar CompaniesNextFrequently Asked Questions

Last updated 2 years ago

Was this helpful?