# Multi-country Autohero Price Dataset Scraper

**Use case:** 

Create a multi-country Autohero car price dataset for used-car market research and dealer benchmarking.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.autohero.com/de/search/"
    },
    {
      "url": "https://www.autohero.com/fr/search/"
    },
    {
      "url": "https://www.autohero.com/nl/search/"
    },
    {
      "url": "https://www.autohero.com/es/search/"
    },
    {
      "url": "https://www.autohero.com/it/search/"
    },
    {
      "url": "https://www.autohero.com/pl/search/"
    }
  ],
  "maxItems": 100,
  "deduplicate": true
}
```

## Output

```json
{
  "title": {
    "label": "Title"
  },
  "price": {
    "label": "Price"
  },
  "mileageKm": {
    "label": "Mileage (km)"
  },
  "year": {
    "label": "Year"
  },
  "fuelType": {
    "label": "Fuel"
  },
  "transmission": {
    "label": "Transmission"
  },
  "trim": {
    "label": "Trim"
  },
  "monthlyPrice": {
    "label": "Monthly price"
  },
  "country": {
    "label": "Country"
  },
  "listingUrl": {
    "label": "Listing URL"
  },
  "imageUrl": {
    "label": "Image URL"
  },
  "sourceUrl": {
    "label": "Source URL"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

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