# Scrape Danish property by price

**Use case:** 

Scrape Home.dk property listings filtered by maximum price. Structured Danish real estate data. No subscription, pay per result.

## Input

```json
{
  "transaction": "sale",
  "minPrice": 2000000,
  "maxPrice": 3000000,
  "minAreaM2": 80,
  "maxAreaM2": 200,
  "minYearBuilt": 2010,
  "maxYearBuilt": 2026,
  "rooms": [
    "3",
    "4"
  ],
  "fetchDetails": false,
  "maxItems": 5
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "priceAmount": {
    "label": "Price (DKK)",
    "format": "number"
  },
  "areaM2": {
    "label": "Area m2",
    "format": "number"
  },
  "numberOfRooms": {
    "label": "Rooms",
    "format": "number"
  },
  "energyLabel": {
    "label": "Energy",
    "format": "text"
  },
  "yearBuilt": {
    "label": "Built",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Home.dk Denmark Real Estate Scraper](https://apify.com/unfenced-group/homedk-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/unfenced-group/homedk-scraper) to learn more, explore other use cases, and run it yourself.