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)

Last updated