Block disposable emails during user registration to prevent spam accounts.
Spam accounts use disposable emails to sign up, abuse free trials, pollute your user database, and skew metrics. Manual cleanup is endless and costly.
Check emails during registration with our Disposable Email API. Block or flag accounts using temporary emails before they're created.
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);