Kontakte (Name, Position, E-Mail, Telefon) aus JavaScript-gerenderten Unternehmensseiten (React, Vue, Angular SPAs) per Playwright plus KI extrahieren. Browser-basierte Ergänzung zum HTTP-only Website Contact Extractor: deckt Team-, Kontakt-, About- und Impressum-Seiten ab, die ohne JavaScript leeres HTML liefern. Gleiches Input-Format, gleiche Ausgabe, Anti-Halluzinations-Validierung gegen Quell-HTML. Auto-chained, wenn der HTTP-Actor ein Unternehmen mit js_rendering_suspected markiert.
# Run the browser contact extractor on a list of JS-heavy company sites curl -X POST "https://api.apify.com/v2/acts/santamaria-automations~website-contact-extractor-browser/runs?token=YOUR_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "companies": [ { "company_id": "abc-123", "company_name": "TechCorp AG", "website_url": "https://techcorp.ch" } ], "llmProvider": "gemini", "geminiApiKey": "YOUR_GEMINI_KEY" }' # Or use with AI agents via MCP: # https://mcp.apify.com?tools=santamaria-automations/website-contact-extractor-browser
{
"company_id": "abc-123",
"company_name": "TechCorp AG",
"contacts": [
{
"name": "Max Mustermann",
"position": "CTO",
"email": "[email protected]",
"confidence": 0.92
}
],
"status": "success",
"browser_extraction": true
}