# Company enrichment from work emails (logo, tech, socials)

**Use case:** 

Turns work email addresses or domains into one company row each: official website, logo, tech stack, email security, domain age and public company links.

## Input

```json
{
  "companies": [
    "hello@linear.app",
    "stripe.com"
  ],
  "modules": [
    "logo",
    "tech",
    "contacts",
    "hiring",
    "firmographics"
  ],
  "monitor": false,
  "includePersonalEmails": false,
  "minDomainConfidence": 0.6,
  "maxConcurrency": 5,
  "timeoutSecs": 20,
  "maxContactPages": 4,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "logoUrl": {
    "label": "Logo",
    "format": "image"
  },
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "domain": {
    "label": "Domain",
    "format": "link"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "summary": {
    "label": "Summary",
    "format": "text"
  },
  "founded": {
    "label": "Founded",
    "format": "text"
  },
  "employees": {
    "label": "Employees",
    "format": "number"
  },
  "hqCity": {
    "label": "HQ city",
    "format": "text"
  },
  "hqCountry": {
    "label": "HQ country",
    "format": "text"
  },
  "industries": {
    "label": "Industries",
    "format": "array"
  },
  "techStack": {
    "label": "Tech stack",
    "format": "array"
  },
  "cms": {
    "label": "CMS",
    "format": "text"
  },
  "emailProvider": {
    "label": "Email provider",
    "format": "text"
  },
  "dmarcPolicy": {
    "label": "DMARC",
    "format": "text"
  },
  "domainAgeYears": {
    "label": "Domain age (y)",
    "format": "number"
  },
  "bestEmail": {
    "label": "Best email",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "contactRoute": {
    "label": "Contact route",
    "format": "text"
  },
  "linkedin": {
    "label": "LinkedIn",
    "format": "link"
  },
  "x": {
    "label": "X",
    "format": "link"
  },
  "hiringOpenJobs": {
    "label": "Open jobs",
    "format": "number"
  },
  "hiringNewLast30Days": {
    "label": "New jobs 30d",
    "format": "number"
  },
  "hiringLevel": {
    "label": "Hiring",
    "format": "text"
  },
  "brandColor": {
    "label": "Brand colour",
    "format": "text"
  },
  "modulesFilled": {
    "label": "Modules filled",
    "format": "array"
  },
  "changedModules": {
    "label": "Changed",
    "format": "array"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Firmfold — Company Enrichment API: Domain to Tech & Contacts](https://apify.com/cybermax/company-enrichment.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/cybermax/company-enrichment.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/cybermax/company-enrichment.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`).
