Overview
Have a list of business names but missing contact info? Our enrichment engine appends missing data points like verified owner emails, direct phone lines, and social profiles to your existing lists.
Key Benefits
- Find verified personal emails of business owners.
- Append direct mobile and office phone numbers.
- Discover social media profiles and VAT details.
- Bulk processing for thousands of records at once.
Data Collection
Live data preview
Business Name
Category
Location
Status
Blue Bottle Coffee
Coffee & Cafes
San Francisco, CA
Verified
TechCorp Solutions
Technology
Austin, TX
Verified
Sunshine Dental
Healthcare
Miami, FL
Processing
Peak Fitness
Health & Wellness
Denver, CO
Verified
Urban Eats
Restaurant
Seattle, WA
Verified
Showing 5 of 200M+ records
API Data Enrichment
Powerful APIs to integrate business data into your workflow
Contact Enrichment
Enrich contact data
/api/v1/enrich/contacts
POST
Find email addresses
/api/v1/enrich/emails
POST
Find phone numbers
/api/v1/enrich/phones
POST
Example
// Find business owner contacts
POST /api/v1/enrich/contacts
{
"business_id": "biz_12345",
"lookup": {
"title_patterns": ["CEO", "Founder", "Owner"],
"department": "executive"
},
"contact_fields": [
"email",
"phone",
"linkedin",
"twitter"
]
}
// Response
{
"contacts": [
{
"name": "John Smith",
"title": "CEO & Founder",
"email": "john@example.com",
"email_confidence": 0.95,
"phone": "+1 415-555-0100",
"linkedin": "linkedin.com/in/johnsmith",
"twitter": "@johnsmith_ceo"
},
{
"name": "Sarah Johnson",
"title": "COO",
"email": "sarah@example.com",
"email_confidence": 0.89,
"phone": "+1 415-555-0101",
"linkedin": "linkedin.com/in/sarahjohnson"
}
]
}