Extract emails, phone numbers, and addresses from websites for lead generation and outreach.
Find contact pages, about pages, and team directories.
Use ScrapeForge to pull contact data from pages.
const contacts = await client.scrape({
url: 'https://example.com/contact',
extract: { emails: 'a[href^="mailto:"]', phones: 'a[href^="tel:"]' }
});Verify extracted emails and normalize phone numbers.
Push verified contacts to your CRM or database.