Find your ideal prospects instantly
Search 500M+ professional profiles by role, company, location, and more. Get verified contact info for every result.
Search by any combination of
Powerful search capabilities
Find exactly who you're looking for with our intelligent search engine.
Natural Language Search
Search like you think. Just describe who you're looking for in plain English.
Advanced Filters
Narrow down results by title, company, location, industry, and more.
Instant Results
Get results in milliseconds from our pre-indexed database of 500M+ profiles.
ICP Matching
Define your ideal customer profile and find prospects that match perfectly.
Built for every team
From sales to recruiting, find the people that matter to your business.
Sales Prospecting
Find decision-makers at target accounts and get their verified contact info instantly.
Recruiting
Source candidates by role, skills, company, and location with accurate contact data.
Market Research
Build lists of professionals in specific industries for surveys and outreach.
Integrate search into your workflow
Use our API to programmatically search and retrieve contact data for your applications.
import Enrich from 'enrich-sdk';
const enrich = new Enrich({
apiKey: process.env.ENRICH_API_KEY
});
// Search for leads
const results = await enrich.search({
query: "VP of Sales at Series B startups",
filters: {
location: "San Francisco, CA",
companySize: "50-200",
industry: "SaaS"
},
limit: 100
});
// Each result includes verified contact info
results.forEach(lead => {
console.log(lead.name, lead.email, lead.phone);
});