# Scrape furniture listings near The Hague

**Use case:** 

Runs **Huis en Inrichting** with query **bankstel**, **25 km** from **Den Haag**
(postcode **2511AA**), max **80** items. Outputs **title, price, city, seller,
images**, and listing links for interior resellers and local market scans.
**$1.50/1,000 listings**; schedule daily to watch new "Vandaag" posts.

## Input

```json
{
  "startUrl": "https://www.marktplaats.nl/l/auto-s/q/car/",
  "startUrls": [],
  "searchQuery": "bankstel",
  "l1CategoryId": "178",
  "postcode": "2511AA",
  "distanceMeters": "25000",
  "listingType": "10882",
  "searchInTitleAndDescription": true,
  "includeListingDetails": false,
  "detailsConcurrency": 10,
  "maxItems": 80,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "image": {
    "label": "Image",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "url": {
    "label": "Listing",
    "format": "string"
  },
  "priceEur": {
    "label": "Price (EUR)",
    "format": "number"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "sellerName": {
    "label": "Seller",
    "format": "string"
  },
  "itemId": {
    "label": "Item ID",
    "format": "string"
  },
  "dateLabel": {
    "label": "Posted",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "imageUrls": {
    "label": "All images",
    "format": "array"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/rigelbytes/marktplaats-nl-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
