Clean existing email lists by identifying and removing disposable addresses.
Email lists accumulate disposable addresses over time. These addresses bounce, hurt sender reputation, and waste marketing resources.
Batch process your email list through our API to identify disposable addresses. Remove or segment these contacts to improve deliverability.
const res = await fetch("https://api.apiverve.com/v1/emaildisposablechecker?email=support%40myspace.com", {
headers: { "x-api-key": "YOUR_API_KEY" },
});
const { data } = await res.json();
console.log(data);