# Build a multi-country Kompass supplier dataset

**Use case:** 

Combine public Kompass category URLs from multiple country domains into one deduplicated supplier-research dataset.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://us.kompass.com/a/industrial-machinery/"
    },
    {
      "url": "https://gb.kompass.com/a/industrial-machinery/"
    }
  ],
  "maxItems": 100,
  "includeDetails": true,
  "maxPagesPerUrl": 5
}
```

## Output

```json
{
  "companyName": {
    "label": "Company",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "supplierActivities": {
    "label": "Activities",
    "format": "array"
  },
  "employeeRange": {
    "label": "Employees",
    "format": "string"
  },
  "website": {
    "label": "Website",
    "format": "string"
  },
  "phoneAvailable": {
    "label": "Phone available",
    "format": "boolean"
  },
  "emailAvailable": {
    "label": "Email available",
    "format": "boolean"
  },
  "profileUrl": {
    "label": "Profile",
    "format": "string"
  },
  "sourceUrl": {
    "label": "Input URL",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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