Stop bad emails before they enter your funnel
One GET returns every signal — scroll to see each check in action.
Signals per lookup
8+ characteristics
Disposable coverage
Curated data + live DNS
Integration
REST API with SDKs
Every signal in one response
Syntax validation
RFC-aware parsing catches malformed addresses and invalid suffixes using IANA root zone and Public Suffix List data before they pollute your database.
Finding:Invalid TLD. `.notreal` is not in the IANA list. Further checks are skipped when syntax fails.
API response{"code": "SUCCESS","message": "ok","data": {"email": "[email protected]","syntax_validation": false,"normalized": "[email protected]"}}Normalization
Deduplicate signups by canonicalizing local parts, domains, and subaddressing variants.
Finding:Plus-tag and dot variants collapse to one canonical Gmail address. Flag subaddressing for routing rules.
API response{"code": "SUCCESS","message": "ok","data": {"email": "[email protected]","syntax_validation": true,"normalized": "[email protected]","subaddressing": true}}Role address detection
Flag info@, support@, and other shared inboxes so sales and marketing lists stay personal.
Finding:Local part matches a shared inbox prefix. Route to support queues, not personal outreach.
API response{"code": "SUCCESS","message": "ok","data": {"email": "[email protected]","syntax_validation": true,"role_address": true}}Public domain detection
Identify consumer mail providers when B2B fit or lead scoring depends on corporate domains.
Finding:Domain is a known freemail provider. Useful for ICP filters and enrichment workflows.
API response{"code": "SUCCESS","message": "ok","data": {"email": "[email protected]","syntax_validation": true,"public_domain": true}}Relay domain detection
Identify Apple Hide My Email, Firefox Relay, and other forwarding providers that skew engagement metrics.
Finding:Domain is a Proton Pass relay. Treat as masked identity, not a direct personal inbox.
API response{"code": "SUCCESS","message": "ok","data": {"email": "[email protected]","syntax_validation": true,"relay_domain": true,"relay_provider": "protonmail"}}Disposable detection
Block throwaway inboxes with continuously updated domain intelligence and live DNS for domains that have not yet hit public blocklists.
Finding:Domain classified as disposable. Block at signup before the address enters your CRM.
API response{"code": "SUCCESS","message": "ok","data": {"email": "[email protected]","syntax_validation": true,"disposable": true,"detection_source": "precomputed"}}
Try it on your next signup form
Create a free account, grab an API key, read the detection signal guides, or follow the disposable-email signup guide for server-side integration patterns.