# Bikes on Marktplaats: price, seller and city

**Use case:** 

Scrape bike listings from Marktplaats with price, seller, city and posting date. Clean JSON ready for Sheets, platform usage included.

## Input

```json
{
  "query": [
    "fiets"
  ],
  "category": "all",
  "radiusKm": "0",
  "offeredSince": "any",
  "sort": "relevance",
  "maxResults": 25
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "price": {
    "label": "Price (EUR)",
    "format": "number"
  },
  "priceType": {
    "label": "Price type",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "postedDate": {
    "label": "Posted date (ISO)",
    "format": "string"
  },
  "sellerName": {
    "label": "Seller name",
    "format": "string"
  },
  "promoted": {
    "label": "Promoted listing",
    "format": "boolean"
  },
  "url": {
    "label": "Listing URL",
    "format": "string"
  }
}
```

## About this Actor

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