# BOVAG Used Car Search Scraper

**Use case:** 

Scrape BOVAG used car listings from Dutch search pages with price, mileage, dealer, city, photos, make, model, and listing URLs.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.viabovag.nl/auto"
    }
  ],
  "maxItems": 50
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "listingUrl": {
    "label": "Listing URL",
    "format": "link"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "make": {
    "label": "Make",
    "format": "text"
  },
  "model": {
    "label": "Model",
    "format": "text"
  },
  "year": {
    "label": "Year",
    "format": "number"
  },
  "mileage": {
    "label": "Mileage",
    "format": "number"
  },
  "fuelTypes": {
    "label": "Fuel",
    "format": "text"
  },
  "transmission": {
    "label": "Transmission",
    "format": "text"
  },
  "bodyType": {
    "label": "Body",
    "format": "text"
  },
  "dealerName": {
    "label": "Dealer",
    "format": "text"
  },
  "dealerCity": {
    "label": "City",
    "format": "text"
  },
  "imageUrls": {
    "label": "Images",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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