# Scrape apartment rental listings in Germany

**Use case:** 

Extract apartment & house rental listings from Kleinanzeigen with prices, locations, postal codes, and photos.

## Input

```json
{
  "searchUrl": "https://www.kleinanzeigen.de/s-immobilien/c203",
  "maxItems": 500,
  "useProxies": false,
  "proxyGroups": [
    "SHADER"
  ]
}
```

## Output

```json
{
  "listingId": {
    "label": "Listing ID",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "priceText": {
    "label": "Price Text",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "postalCode": {
    "label": "Postal Code",
    "format": "string"
  },
  "imageUrl": {
    "label": "Image URL",
    "format": "string"
  },
  "imageUrls": {
    "label": "All Image URLs",
    "format": "array"
  },
  "imageCount": {
    "label": "Image Count",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "postedDate": {
    "label": "Posted Date",
    "format": "string"
  },
  "attributes": {
    "label": "Attributes",
    "format": "object"
  },
  "sellerType": {
    "label": "Seller Type",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "string"
  }
}
```

## About this Actor

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