# CRM Company Domain Enrichment Scraper

**Use case:** 

Enrich CRM company accounts with official domains, confidence scores, alternative domains, and public social links.

## Input

```json
{
  "companies": [
    {
      "name": "Bolt",
      "country": "Estonia"
    },
    {
      "name": "Wise",
      "country": "United Kingdom"
    },
    {
      "name": "Canva",
      "country": "Australia"
    }
  ],
  "maxCandidates": 7,
  "includeSocialLinks": true,
  "requestDelayMs": 800
}
```

## Output

```json
{
  "companyName": {
    "label": "Company"
  },
  "domain": {
    "label": "Domain"
  },
  "websiteUrl": {
    "label": "Website URL",
    "format": "link"
  },
  "confidence": {
    "label": "Confidence"
  },
  "matchMethod": {
    "label": "Match method"
  },
  "matchedTitle": {
    "label": "Matched title"
  },
  "matchedSnippet": {
    "label": "Matched snippet"
  },
  "alternativeDomains": {
    "label": "Alternative domains"
  },
  "socialLinks": {
    "label": "Social links"
  },
  "error": {
    "label": "Error"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

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