# Bulk CRM company address enrichment workflow

**Use case:** 

Enrich a company-domain list with public HQ, registered, mailing, billing, and office addresses for CRM cleanup and vendor checks.

## Input

```json
{
  "startUrls": [
    "https://www.hubspot.com/company/contact",
    "https://www.mozilla.org/en-US/contact/"
  ],
  "maxPagesPerWebsite": 5,
  "maxAddressesPerWebsite": 25,
  "requestTimeoutSecs": 20,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "addressType": {
    "label": "Type",
    "format": "text"
  },
  "fullAddress": {
    "label": "Full address",
    "format": "text"
  },
  "streetAddress": {
    "label": "Street",
    "format": "text"
  },
  "addressLocality": {
    "label": "City / locality",
    "format": "text"
  },
  "addressRegion": {
    "label": "Region",
    "format": "text"
  },
  "postalCode": {
    "label": "Postal code",
    "format": "text"
  },
  "addressCountry": {
    "label": "Country",
    "format": "text"
  },
  "sourceUrl": {
    "label": "Source",
    "format": "link"
  },
  "evidenceText": {
    "label": "Evidence",
    "format": "text"
  },
  "confidence": {
    "label": "Confidence",
    "format": "number"
  },
  "extractionMethod": {
    "label": "Method",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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