Build targeted prospect lists by extracting company information, contact details, and business data from any website or directory.
Your sales team spends hours manually searching directories, company websites, and professional networks to build prospect lists. This manual approach doesn't scale.
Existing lead databases are expensive, often outdated, and may not cover your specific target market or niche industries.
Extract comprehensive business and contact information
Extract company name, industry, size, location, and description.
Find emails, phone numbers, and key decision-maker names.
Gather website URLs, social profiles, and online footprint.
Extract any additional data points specific to your needs.
Build your lead list in three simple steps
Choose your data sources - industry directories, company websites, or professional networks.
Specify what lead data you need - company info, contacts, industry, size, etc.
Receive structured JSON data ready to import into your CRM or sales tools.
Extract business leads from any company page
const axios = require('axios');
const API_KEY = 'your_api_key';
const companyUrl = 'https://example-company.com/about';
// Extract company and contact information
const response = await axios.get('https://api.webscraping.ai/ai/fields', {
params: {
api_key: API_KEY,
url: companyUrl,
fields: JSON.stringify({
company_name: 'Name of the company',
industry: 'Industry or sector the company operates in',
company_size: 'Number of employees or company size',
headquarters: 'Location of headquarters',
description: 'Brief company description',
website: 'Main website URL',
contact_email: 'General contact email address',
phone: 'Contact phone number',
linkedin: 'LinkedIn company page URL'
})
}
});
console.log(response.data);
// {
// "company_name": "TechCorp Solutions",
// "industry": "Software Development",
// "company_size": "50-200 employees",
// "headquarters": "San Francisco, CA",
// "description": "Enterprise software solutions for...",
// "website": "https://techcorp.com",
// "contact_email": "contact@techcorp.com",
// "phone": "+1 (555) 123-4567",
// "linkedin": "https://linkedin.com/company/techcorp"
// }
curl -G "https://api.webscraping.ai/ai/fields" \
--data-urlencode "api_key=your_api_key" \
--data-urlencode "url=https://example-company.com/about" \
--data-urlencode 'fields={"company_name":"Company name","industry":"Industry","company_size":"Employee count","headquarters":"Location","contact_email":"Email","phone":"Phone number","linkedin":"LinkedIn URL"}'
Chamber of commerce lists, trade associations, professional directories
About pages, team pages, contact information
Conference speakers, exhibitors, registered attendees
G2, Capterra, and industry-specific review sites
Get started with 1,000 free API credits. No credit card required.