Fill data gaps in your CRM automatically. Enrich leads with company details, firmographics, and contact information from web sources.
Your CRM is full of leads with missing fields - no company size, no industry, no phone numbers. This incomplete data makes lead scoring unreliable and sales outreach generic.
Traditional data enrichment services are expensive, charge per-record, and often have outdated information in their databases.
Fill every field your CRM needs
Company size, industry, location, founding year, and revenue.
Email addresses, phone numbers, and key contacts.
Technologies and tools the company uses.
LinkedIn, Twitter, and other social presence.
Enrich your CRM data in three steps
Pull leads with missing data from your CRM along with their company websites.
Our API extracts the missing information from company websites and other sources.
Import the enriched data back into your CRM with complete lead profiles.
Enrich a lead from their company website
const axios = require('axios');
const API_KEY = 'your_api_key';
// Lead from CRM with missing data
const lead = {
company: 'TechStartup Inc',
website: 'https://techstartup.com',
email: 'john@techstartup.com',
// Missing: industry, company_size, phone, linkedin
};
// Enrich from company website
const response = await axios.get('https://api.webscraping.ai/ai/fields', {
params: {
api_key: API_KEY,
url: lead.website,
fields: JSON.stringify({
company_name: 'Official company name',
industry: 'Industry or business sector',
company_size: 'Number of employees',
headquarters: 'Headquarters location',
phone: 'Contact phone number',
linkedin: 'LinkedIn company page URL',
founded: 'Year the company was founded',
description: 'Brief company description'
})
}
});
// Merge enriched data with existing lead
const enrichedLead = { ...lead, ...response.data };
console.log(enrichedLead);
// {
// "company": "TechStartup Inc",
// "website": "https://techstartup.com",
// "email": "john@techstartup.com",
// "company_name": "TechStartup Inc.",
// "industry": "SaaS / Software",
// "company_size": "11-50 employees",
// "headquarters": "Austin, TX",
// "phone": "+1 (512) 555-0123",
// "linkedin": "https://linkedin.com/company/techstartup",
// "founded": "2019",
// "description": "We help teams collaborate better..."
// }
curl -G "https://api.webscraping.ai/ai/fields" \
--data-urlencode "api_key=your_api_key" \
--data-urlencode "url=https://techstartup.com" \
--data-urlencode 'fields={"industry":"Industry","company_size":"Employee count","headquarters":"Location","phone":"Phone number","linkedin":"LinkedIn URL","founded":"Year founded"}'
Employee count for lead scoring and routing
Sector and vertical for segmentation
Phone numbers and alternative emails
LinkedIn, Twitter for social selling
More lead generation solutions
Get started with 1,000 free API credits. No credit card required.