Your defense against disposable emails, fraud, and costly bounces
Every invalid email costs your business. Sweep Emails API verifies email validity and detects disposable providers in real-time, giving you clean data, reduced fraud, and higher conversion rates.
Try 250 Free Email CheckOur advanced email verification protects your business from the most common email-related problems
Stop wasting resources on invalid emails. Our API ensures your marketing dollars target real users, cutting costs by up to 30%.
With 67% accuracy rate, detect disposable emails used for fake accounts, free trial abuse, and fraudulent activities before they damage your business.
Maintain high deliverability rates by eliminating bounced emails that harm your domain reputation and email deliverability.
Get results in milliseconds with our optimized infrastructure, perfect for real-time verification during user registration.
Implement in minutes with our well-documented API, comprehensive libraries, and ready-to-use code examples.
Rest easy knowing our service is fully GDPR and CCPA compliant, with no email data stored after verification.
No hidden fees. Choose the plan that fits your business needs.
$0/month
$4.99/month
$11.99/month
$19.99/month
Implement our API in minutes with these examples
curl -X POST https://api.sweepemails.com/v1/check \
-H "Content-Type: application/json" \
-H "Authorization: YOUR_API_KEY" \
-d '{"email": "[email protected]"}'
fetch('https://api.sweepemails.com/v1/check', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'YOUR_API_KEY'
},
body: JSON.stringify({
email: '[email protected]'
})
})
.then(response => response.json())
.then(data => console.log(data));
import requests
url = "https://api.sweepemails.com/v1/check"
headers = {
"Content-Type": "application/json",
"Authorization": "YOUR_API_KEY"
}
data = {
"email": "[email protected]"
}
response = requests.post(url, json=data, headers=headers)
print(response.json())
package main
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
)
func main() {
url := "https://api.sweepemails.com/v1/check"
requestBody, _ := json.Marshal(map[string]string{
"email": "[email protected]",
})
req, _ := http.NewRequest("POST", url, bytes.NewBuffer(requestBody))
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", "YOUR_API_KEY")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
body, _ := ioutil.ReadAll(resp.Body)
fmt.Println(string(body))
}
{
"Code": 20000,
"data": {
"email": "[email protected]",
"is_fake": true,
"provider": "mohmal.com"
}
}
Have questions? We're here to help.
17B Silicon Waha
New Assiut, Egypt