Validate email addresses, enrich leads with company data, and verify domains — all via API.
const email = await fetch('https://api.toolcenter.dev/v1/email-validate', {
method: 'POST',
headers: { 'Authorization': 'Bearer KEY', 'Content-Type': 'application/json' },
body: JSON.stringify({ email: lead.email })
}).then(r => r.json());
if (email.is_valid && !email.is_disposable) {
// Enrich with company data
const domain = lead.email.split('@')[1];
const tech = await fetch('https://api.toolcenter.dev/v1/techstack', {...});
}