# Scrape BMW car listings from Marktplaats

**Use case:** 

Export BMW cars from Marktplaats with title, price, model, build year, mileage, fuel type, transmission, seller city and photos — CSV or JSON.

## Input

```json
{
  "searchUrls": [
    "https://www.marktplaats.nl/l/auto-s/bmw/?l1CategoryId=91&l2CategoryId=96"
  ],
  "searchQueries": [],
  "maxResults": 300,
  "sortBy": "date_down",
  "includeSponsored": true
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price (€)",
    "format": "number"
  },
  "priceType": {
    "label": "Price Type",
    "format": "text"
  },
  "sellerType": {
    "label": "Seller",
    "format": "text"
  },
  "isSponsored": {
    "label": "Sponsored Ad",
    "format": "boolean"
  },
  "sellerCity": {
    "label": "City",
    "format": "text"
  },
  "categoryName": {
    "label": "Category",
    "format": "text"
  },
  "postedAt": {
    "label": "Posted",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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