Website Contact Extractor (Browser): JS-Heavy Company Sites

Extract contacts (name, position, email, phone) from JavaScript-rendered company sites (React, Vue, Angular SPAs) using Playwright plus AI. Browser-based companion to the HTTP-only Website Contact Extractor: handles team, contact, about and impressum pages that return empty HTML without JavaScript execution. Same input format, same output, anti-hallucination validation against source HTML. Auto-chained when the HTTP actor flags a company with js_rendering_suspected.

Open on Apify → Try it now
Pricing
$0.02/co + $0.010/contact
RAM
1024MB
Engine
Playwright + LLM
Validation
Anti-hallucination
LLM providers
Gemini, Groq, OpenRouter
Auto-chain
From HTTP actor

When to use this actor

How it works

API example

# 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

Integrations

Output sample

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

Related Actors

Open on Apify → Try it now (free tier available)