# Monitor Immowelt Property Inventory

**Use case:** 

Monitor multiple Immowelt property searches, deduplicate listing IDs, and export timestamped price, address, area, image, and contact records.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.immowelt.de/suche/kaufen/wohnung/berlin/berlin-10115/ad08de8634"
    },
    {
      "url": "https://www.immowelt.de/suche/hamburg/wohnungen/mieten"
    }
  ],
  "maxItems": 60,
  "debugMode": false
}
```

## Output

```json
{
  "listingId": {
    "label": "Listing ID",
    "format": "text"
  },
  "listingUrl": {
    "label": "Listing",
    "format": "link"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "priceCurrency": {
    "label": "Currency",
    "format": "text"
  },
  "pricePerSquareMeter": {
    "label": "Price / m²",
    "format": "number"
  },
  "propertyType": {
    "label": "Property type",
    "format": "text"
  },
  "intent": {
    "label": "Intent",
    "format": "text"
  },
  "rooms": {
    "label": "Rooms",
    "format": "number"
  },
  "floorAreaSquareMeters": {
    "label": "Area m²",
    "format": "number"
  },
  "floor": {
    "label": "Floor",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "locality": {
    "label": "Locality",
    "format": "text"
  },
  "postcode": {
    "label": "Postcode",
    "format": "text"
  },
  "contactName": {
    "label": "Contact",
    "format": "text"
  },
  "agencyName": {
    "label": "Agency",
    "format": "text"
  },
  "imageCount": {
    "label": "Images",
    "format": "number"
  },
  "imageUrl": {
    "label": "Preview",
    "format": "link"
  },
  "badges": {
    "label": "Badges",
    "format": "array"
  },
  "energyClass": {
    "label": "Energy",
    "format": "text"
  },
  "summary": {
    "label": "Summary",
    "format": "text"
  },
  "sourceSearchUrl": {
    "label": "Search URL",
    "format": "link"
  },
  "position": {
    "label": "Position",
    "format": "number"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Immowelt Search Results Scraper](https://apify.com/automation-lab/immowelt-search-results-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/immowelt-search-results-scraper) to learn more, explore other use cases, and run it yourself.