Discover and enrich B2B leads automatically with company data, contact info, and firmographic intelligence.
const companies = await client.search({
query: "series A fintech startups 2024",
maxResults: 50
})
const enriched = await Promise.all(
companies.organic.slice(0, 20).map(c =>
client.scrape({
url: c.link,
extractSchema: {
company: "string",
founded: "string",
employees: "string",
techStack: "string[]",
funding: "string"
}
})
)
)