# Extract emails and phones from German Impressum pages

**Use case:** 

Give it German company websites and get the emails, phone numbers and faxes from each Impressum, contact page and privacy policy, one record per site. Emails are MX-checked, and the supervisory authorities and chambers an Impressum must name are left out. This example reads four sites; replace them with your own list.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://t3n.de/"
    },
    {
      "url": "https://www.netzwelt.de/"
    },
    {
      "url": "https://www.computerbild.de/"
    },
    {
      "url": "https://www.dihk.de/"
    }
  ],
  "maxContactPages": 6,
  "validateEmails": true,
  "includeSocials": true,
  "renderJs": "off",
  "phoneRegion": "PL",
  "proxyConfiguration": {
    "useApifyProxy": false
  },
  "proxyFallback": true
}
```

## Output

```json
{
  "domain": {
    "label": "Domain",
    "format": "link"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "company.company": {
    "label": "Company (Impressum)",
    "format": "text"
  },
  "best_email": {
    "label": "Best email",
    "format": "text"
  },
  "emails": {
    "label": "Emails (scored)",
    "format": "array"
  },
  "phones": {
    "label": "Phones",
    "format": "array"
  },
  "billed": {
    "label": "Billed",
    "format": "boolean"
  },
  "company.representatives": {
    "label": "Managing directors / owners",
    "format": "array"
  },
  "company.legal_form": {
    "label": "Legal form",
    "format": "text"
  },
  "company.vat_id": {
    "label": "VAT ID",
    "format": "text"
  },
  "company.register_court": {
    "label": "Register court",
    "format": "text"
  },
  "company.register_number": {
    "label": "Register number",
    "format": "text"
  },
  "company.address": {
    "label": "Address (Impressum)",
    "format": "object"
  },
  "faxes": {
    "label": "Faxes (not billed)",
    "format": "array"
  },
  "socials": {
    "label": "Socials",
    "format": "object"
  },
  "email_count": {
    "label": "Emails found",
    "format": "number"
  },
  "pages_crawled": {
    "label": "Pages crawled",
    "format": "number"
  },
  "rendered": {
    "label": "Rendered in browser",
    "format": "boolean"
  }
}
```

## About this Actor

This example demonstrates how to use [Impressum Email Scraper (German Sites)](https://apify.com/sandy_yclept/impressum-email-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/sandy_yclept/impressum-email-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/sandy_yclept/impressum-email-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
