Agent toolkit

B2B SDR Agent

Enrich a lead with a few chained API calls for under $0.06 USDC.

Use case

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.

APIs in this bundle (6)
Cycle cost ≈ $0.091 USDC
Network Base L2
Settle <2s
Signup none

Code example

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/detect?url=${company}.com`);
  const social = await x402Fetch(`https://social-profile.api.klymax402.com/api/lookup?handle=${person.twitter_handle}&platform=twitter`);
  return { ...person, tech, social };
}
← All bundles