Skip to content
Go To Dashboard

Email & Enrichment

Find professional email addresses, verify that an address is deliverable, look up the emails published at a domain, and enrich people and companies — pay per use, no monthly plan.

Email lookup is on the typed ctx.sapiom.* client, so sapiom_dev_agents_check validates the call at author time:

const { email, score } = await ctx.sapiom.search.emailSearch.findEmail({
fullName: "Ada Lovelace",
domain: "example.com",
});

findEmail, verifyEmail, and domainSearch live on the search.emailSearch namespace. Autocomplete surfaces the full input and response types. See Using Capabilities.

From Claude Code or Codex, reach email lookup plus company and people enrichment through Sapiom Cloud MCP. Ask for the outcome in ordinary language; your coding agent can discover the current tool and input contract.

Outside an agent, call the same capability through the typed client—see the @sapiom/tools package:

const { result } = await sapiom.search.emailSearch.verifyEmail({
});