Contact Info Extractor
Pricing
Pay per usage
Go to Apify Store
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
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
| Parameter | Type | Description |
|---|---|---|
| urls | string[] | List of website URLs to extract contacts from |
| startUrl | string | Single URL (alternative to urls list) |
| followContactPages | boolean | Auto-follow Contact/About pages (default: true) |
| maxContactPages | integer | Max contact pages to follow per URL (default: 3) |
| requestTimeoutSecs | integer | HTTP timeout per request (default: 30) |
Output
Each result contains:
url- The source URLdomain- The domain nameemails- List of found email addressesphones- List of found phone numberssocialProfiles- Object with platform names as keys and URL lists as valuesaddress- Physical address if foundcontactPages- 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}