# Czech Real Estate Listings Data Extractor

**Use case:** 

Extract structured property data from Sreality.cz's recommended listings. Get prices, locations, agency info, and more for market analysis.

## Input

```json
{
  "startUrl": "https://www.sreality.cz/doporucene",
  "results_wanted": 200,
  "max_pages": 10,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "estate_id": {
    "label": "Estate ID",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "offer_type": {
    "label": "Offer Type",
    "format": "text"
  },
  "category_main": {
    "label": "Main Category",
    "format": "text"
  },
  "category_sub": {
    "label": "Sub Category",
    "format": "text"
  },
  "locality_text": {
    "label": "Locality",
    "format": "text"
  },
  "price_czk": {
    "label": "Price CZK",
    "format": "number"
  },
  "price_czk_m2": {
    "label": "CZK/m2",
    "format": "number"
  },
  "price_currency": {
    "label": "Currency",
    "format": "text"
  },
  "primary_image_url": {
    "label": "Image",
    "format": "image"
  },
  "image_urls": {
    "label": "Image URLs",
    "format": "text"
  },
  "images_count": {
    "label": "Images",
    "format": "number"
  },
  "agency_id": {
    "label": "Agency ID",
    "format": "number"
  },
  "has_video": {
    "label": "Video",
    "format": "boolean"
  },
  "has_matterport": {
    "label": "Matterport",
    "format": "boolean"
  },
  "scraped_at": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

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