Enrich a lead with 5 chained API calls for under $0.06 USDC.
Pass a name + company to your agent. It returns the verified email, role, tech stack, social profiles, and company firmographics — ready to drop into your CRM or Slack flow.
import { x402Fetch } from "x402-agent-tools";
async function enrichLead(name: string, company: string) {
const email = await x402Fetch(`https://email-finder.api.klymax402.com/api/find?name=${name}&domain=${company}.com`);
const person = await x402Fetch(`https://person-enrichment.api.klymax402.com/api/enrich?email=${email.address}`);
const tech = await x402Fetch(`https://tech-enrichment.api.klymax402.com/api/stack?domain=${company}.com`);
const social = await x402Fetch(`https://social-profile.api.klymax402.com/api/profile?email=${email.address}`);
return { ...person, tech, social };
}
Install npm package
Full API catalog (llms.txt)
Live activity