# Scrape caravan listings from Marktplaats

**Use case:** 

Export the newest Marktplaats caravan ads with title, price, description, images, seller name, city and coordinates — as CSV or JSON.

## Input

```json
{
  "searchUrls": [],
  "searchQueries": [
    "caravan"
  ],
  "maxResults": 150,
  "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.