# Munich Rental Apartments ImmoScout24 Scraper

**Use case:** 

Extract Munich rental apartment listings from ImmobilienScout24 with warm rent, size, rooms, district, photos, and listing URLs.

## Input

```json
{
  "searchUrls": [
    "https://www.immobilienscout24.de/Suche/de/bayern/muenchen/wohnung-mieten"
  ],
  "maxListings": 50,
  "maxPages": 3,
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "maxConcurrency": 2,
  "navigationTimeoutSecs": 60,
  "maxRequestRetries": 3
}
```

## Output

```json
{
  "listingId": {
    "label": "ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "listingType": {
    "label": "Type",
    "format": "text"
  },
  "price": {
    "label": "Price (€)",
    "format": "number"
  },
  "pricePerSqm": {
    "label": "€/m²",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "livingAreaSqm": {
    "label": "Area (m²)",
    "format": "number"
  },
  "rooms": {
    "label": "Rooms",
    "format": "number"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "zipCode": {
    "label": "ZIP",
    "format": "text"
  },
  "agentName": {
    "label": "Agent",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [ImmoScout24 Germany Real Estate Scraper](https://apify.com/automation-lab/immoscout24-de-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/immoscout24-de-scraper) to learn more, explore other use cases, and run it yourself.