Contact Info Extractor avatar

Contact Info Extractor

Pricing

Pay per usage

Go to Apify Store
Contact Info Extractor

Contact Info Extractor

Extract emails, phone numbers, social media profiles, and addresses from any website. Auto-follows contact pages. Lead generation ready.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Fulcria Labs

Fulcria Labs

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Categories

Share

Extract emails, phone numbers, social media profiles, and physical addresses from any website.

Features

  • Email extraction from visible text and mailto: links, with smart filtering of junk addresses
  • Phone number extraction from text and tel: links, supporting international formats
  • Social media profiles - LinkedIn, Twitter/X, Facebook, Instagram, YouTube, GitHub, TikTok
  • Physical addresses from schema.org structured data and common HTML patterns
  • Auto-follows contact pages - automatically visits Contact, About, and Team pages for more complete data
  • Batch processing - extract from multiple URLs in a single run

Use Cases

  • Lead Generation: Build prospect lists with verified contact details
  • Sales Prospecting: Enrich company data with emails and social profiles
  • Business Research: Gather contact info for market analysis
  • CRM Enrichment: Fill in missing contact fields for your database

Input

ParameterTypeDescription
urlsstring[]List of website URLs to extract contacts from
startUrlstringSingle URL (alternative to urls list)
followContactPagesbooleanAuto-follow Contact/About pages (default: true)
maxContactPagesintegerMax contact pages to follow per URL (default: 3)
requestTimeoutSecsintegerHTTP timeout per request (default: 30)

Output

Each result contains:

  • url - The source URL
  • domain - The domain name
  • emails - List of found email addresses
  • phones - List of found phone numbers
  • socialProfiles - Object with platform names as keys and URL lists as values
  • address - Physical address if found
  • contactPages - Links to contact-related pages discovered

Example Output

{
"url": "https://example.com",
"domain": "example.com",
"pageTitle": "Example Corp - Leading Solutions",
"emails": ["info@example.com", "sales@example.com"],
"phones": ["+1 (555) 123-4567"],
"socialProfiles": {
"linkedin": ["https://linkedin.com/company/example"],
"twitter": ["https://x.com/example"]
},
"address": "123 Main St, San Francisco, CA 94105",
"contactPages": ["https://example.com/contact"],
"emailCount": 2,
"phoneCount": 1,
"socialPlatformCount": 2
}