# Company address extractor for public websites

**Use case:** 

Extract structured company addresses from public contact and location pages with source evidence, address type, and confidence scores.

## Input

```json
{
  "startUrls": [
    "https://www.hubspot.com/company/contact"
  ],
  "maxPagesPerWebsite": 3,
  "maxAddressesPerWebsite": 20,
  "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.