# CRM company domain cleanup task

**Use case:** 

Resolve CRM account names to official domains using country and domain hints, then export confidence, evidence, and candidate alternatives.

## Input

```json
{
  "companies": [
    {
      "name": "Intercom",
      "country": "United States"
    },
    {
      "name": "Canva",
      "country": "Australia",
      "domainHint": "canva.com"
    },
    {
      "name": "Deel",
      "country": "United States"
    }
  ],
  "maxResultsPerCompany": 8,
  "minConfidence": 55,
  "includeAlternatives": true,
  "useApifyProxy": false,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "companyName": {
    "label": "Company"
  },
  "domain": {
    "label": "Domain"
  },
  "websiteUrl": {
    "label": "Website URL",
    "format": "link"
  },
  "confidence": {
    "label": "Confidence"
  },
  "status": {
    "label": "Status"
  },
  "sourceTitle": {
    "label": "Source title"
  },
  "sourceSnippet": {
    "label": "Source snippet"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "citationUrl": {
    "label": "Citation URL"
  },
  "matchedHints": {
    "label": "Matched hints"
  },
  "searchedAt": {
    "label": "Searched at"
  }
}
```

## About this Actor

This example demonstrates how to use [Company Domain Finder](https://apify.com/automation-lab/company-domain-finder) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/company-domain-finder) to learn more, explore other use cases, and run it yourself.