# AutoScout24 Vehicle Data Extractor

**Use case:** 

Retrieve comprehensive data on used and new cars from AutoScout24. Access detailed listings including pricing, specs, and dealer information.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.autoscout24.com/lst?cy=D&source=detailsearch"
    }
  ],
  "countries": [
    "D"
  ],
  "results_wanted": 100,
  "max_pages": 20,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "make": {
    "label": "Make",
    "format": "text"
  },
  "model": {
    "label": "Model",
    "format": "text"
  },
  "price": {
    "label": "Price (€)",
    "format": "number"
  },
  "mileage_km": {
    "label": "Mileage (km)",
    "format": "number"
  },
  "first_registration": {
    "label": "Year",
    "format": "text"
  },
  "fuel_type": {
    "label": "Fuel",
    "format": "text"
  },
  "location_city": {
    "label": "Location",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [AutoScout24 Scraper 🚗](https://apify.com/shahidirfan/autoscout24-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/shahidirfan/autoscout24-scraper) to learn more, explore other use cases, and run it yourself.