从任意网站提取邮箱、电话号码、社交媒体 URL 与实体地址。对每个输入 URL,抓取器访问主页、发现所有内部链接、优先访问联系、法律声明与关于页,按站爬取多个页面,并将全部信息去重为一条干净记录。无需 API key、无需登录。
# Crawl websites for email, phone and social curl -X POST "https://api.apify.com/v2/acts/santamaria-automations~website-email-scraper/runs?token=YOUR_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "urls": [ "https://www.example-company.ch", "https://www.another-business.de" ], "maxPagesPerSite": 10 }' # Or use with AI agents via MCP: # https://mcp.apify.com?tools=santamaria-automations/website-email-scraper
{
"url": "https://www.example-company.ch",
"domain": "example-company.ch",
"emails": ["[email protected]", "[email protected]"],
"phones": ["+41 44 123 45 67"],
"social_urls": {
"linkedin": "https://www.linkedin.com/company/example-company",
"facebook": "https://www.facebook.com/examplecompany"
},
"address": "Bahnhofstrasse 1, 8001 Zurich, Switzerland",
"pages_crawled": 8,
"contact_page_url": "https://www.example-company.ch/kontakt"
}