# Scrape cars by brand on Marktplaats

**Use case:** 

Scrape Marktplaats car listings filtered by brand. Structured Dutch car marketplace data. No subscription, pay per result.

## Input

```json
{
  "brand": "bmw",
  "searchKeyword": "golf gti",
  "minPrice": 5000,
  "maxPrice": 25000,
  "minYear": 2018,
  "maxYear": 2023,
  "maxMileage": 100000,
  "postcode": "1012AB",
  "distanceMeters": 25000,
  "sortOrder": "DECREASING",
  "fetchDetails": false,
  "startUrls": [],
  "maxItems": 5,
  "maxPages": 10
}
```

## Output

```json
{
  "itemId": {
    "label": "ItemId",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "shortTitle": {
    "label": "ShortTitle",
    "format": "text"
  },
  "displayTitle": {
    "label": "DisplayTitle",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "priceCents": {
    "label": "PriceCents",
    "format": "number"
  },
  "priceType": {
    "label": "PriceType",
    "format": "number"
  },
  "city": {
    "label": "City",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Marktplaats.nl Auto Scraper](https://apify.com/unfenced-group/marktplaats-auto-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/unfenced-group/marktplaats-auto-scraper) to learn more, explore other use cases, and run it yourself.