Website Email Scraper: Mehrseitige E-Mail-, Telefon- und Social-Extraktion

E-Mails, Telefonnummern, Social-Media-URLs und physische Adressen aus jeder Website extrahieren. Für jede Eingabe-URL besucht der Scraper die Homepage, findet alle internen Links, priorisiert Kontakt-, Impressum- und About-Seiten, crawlt mehrere Seiten pro Site und dedupliziert dann alles zu einem sauberen Datensatz. Keine API-Keys, kein Login.

Auf Apify öffnen → Jetzt testen
Preis
$0,001/Seite
RAM
128MB
Engine
HTTP-only Go
Crawl-Umfang
Mehrseitig pro Site
Extrahiert
E-Mail, Telefon, Social, Adresse
Priorisierte Seiten
Kontakt, Impressum, About

Was Sie extrahieren können

Hauptanwendungsfälle

API-Beispiel

# 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

Integrationen

Output-Beispiel

{
  "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"
}

Verwandte Actors

Auf Apify öffnen → Jetzt testen (Free-Tier verfügbar)