Lead Enrichment
Enrich sales leads with company data, tech stacks, and contact information from the web.
The Problem
Sales teams waste hours manually researching prospects. CRM records lack company size, tech stack, funding data, and key contacts. Buying enrichment data from third-party providers is expensive and often stale.
The Solution
CrawlForge search_web finds relevant company pages, and extract_metadata pulls structured data like descriptions, social links, and tech indicators. Build enrichment pipelines that run on demand.
Code Example
// Enrich a lead with company data from the web
const search = await mcp.search_web({
query: "Acme Corp official website",
max_results: 3,
});
const companyUrl = search.results[0].url;
// Extract company metadata
const metadata = await mcp.extract_metadata({
url: companyUrl,
});
console.log({
company: metadata.title,
description: metadata.og_description,
social: metadata.social_links,
technologies: metadata.detected_technologies,
});Tools Used
search_web3 credits
extract_metadata2 credits
Estimated cost: ~5 credits per lead
Ready to Get Started?
Every new account gets 1,000 free credits. No credit card required.
Start Free with 1,000 CreditsRelated Use Cases
Competitive Intelligence
Gather competitor data discreetly using stealth browsing and structured extraction.
stealth_mode (5 cr)scrape_structured (3 cr)
Real-Time Research Agents
Build AI agents that search the web, synthesize findings, and deliver up-to-date research.
deep_research (10 cr)search_web (3 cr)