beginner
6 min read
Lead Generation

Extract Contact Information

Extract emails, phone numbers, and addresses from websites for lead generation and outreach.

1

Identify target pages

Find contact pages, about pages, and team directories.

2

Scrape and extract

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:"]' }
});
3

Validate and clean

Verify extracted emails and normalize phone numbers.

4

Export to CRM

Push verified contacts to your CRM or database.

Ready to try it?

Get your free API key and start building in minutes.

Get Free API Key →