# Monitor Hobby farms in Denmark from Boligsiden

**Use case:** 

Monitor hobby farms in Denmark from Boligsiden with the listing agent's name. One row per record, exported to CSV, JSON or Excel.

## Input

```json
{
  "addressTypes": [
    "hobby farm"
  ],
  "municipalities": "koebenhavn,aarhus",
  "zipCodes": "2100,8000",
  "sortBy": "timeOnMarket",
  "sortAscending": true,
  "maxResults": 1000,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "DK"
  }
}
```

## Output

```json
{
  "caseId": {
    "label": "Case ID",
    "format": "string"
  },
  "url": {
    "label": "Listing URL",
    "format": "string"
  },
  "addressType": {
    "label": "Property type",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "roadName": {
    "label": "Street",
    "format": "string"
  },
  "houseNumber": {
    "label": "No.",
    "format": "string"
  },
  "floor": {
    "label": "Floor",
    "format": "string"
  },
  "zipCode": {
    "label": "Postcode",
    "format": "number"
  },
  "cityName": {
    "label": "City",
    "format": "string"
  },
  "municipality": {
    "label": "Municipality",
    "format": "string"
  },
  "province": {
    "label": "Province",
    "format": "string"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "priceCash": {
    "label": "Price (DKK)",
    "format": "number"
  },
  "pricePerArea": {
    "label": "Price per m2",
    "format": "number"
  },
  "priceChangePercentage": {
    "label": "Price change %",
    "format": "number"
  },
  "publicValuation": {
    "label": "Public valuation",
    "format": "number"
  },
  "monthlyExpense": {
    "label": "Monthly expense",
    "format": "number"
  },
  "downPayment": {
    "label": "Down payment",
    "format": "number"
  },
  "grossMortgage": {
    "label": "Gross mortgage",
    "format": "number"
  },
  "netMortgage": {
    "label": "Net mortgage",
    "format": "number"
  },
  "housingArea": {
    "label": "Living area m2",
    "format": "number"
  },
  "weightedArea": {
    "label": "Weighted area m2",
    "format": "number"
  },
  "lotArea": {
    "label": "Lot area m2",
    "format": "number"
  },
  "basementArea": {
    "label": "Basement m2",
    "format": "number"
  },
  "numberOfRooms": {
    "label": "Rooms",
    "format": "number"
  },
  "numberOfBathrooms": {
    "label": "Bathrooms",
    "format": "number"
  },
  "numberOfToilets": {
    "label": "Toilets",
    "format": "number"
  },
  "numberOfFloors": {
    "label": "Floors",
    "format": "number"
  },
  "yearBuilt": {
    "label": "Year built",
    "format": "number"
  },
  "energyLabel": {
    "label": "Energy label",
    "format": "string"
  },
  "hasBalcony": {
    "label": "Balcony",
    "format": "boolean"
  },
  "hasElevator": {
    "label": "Elevator",
    "format": "boolean"
  },
  "hasTerrace": {
    "label": "Terrace",
    "format": "boolean"
  },
  "daysOnMarket": {
    "label": "Days on market",
    "format": "number"
  },
  "daysListed": {
    "label": "Days listed",
    "format": "number"
  },
  "realtorName": {
    "label": "Agent",
    "format": "string"
  },
  "realtorPhone": {
    "label": "Agent phone",
    "format": "string"
  },
  "realtorEmail": {
    "label": "Agent email",
    "format": "string"
  },
  "realtorCvr": {
    "label": "Agent CVR",
    "format": "string"
  },
  "realtorCity": {
    "label": "Agent city",
    "format": "string"
  },
  "realtorWebsite": {
    "label": "Agent website",
    "format": "string"
  },
  "realtorSellerScore": {
    "label": "Agent seller score",
    "format": "number"
  },
  "realtorBuyerScore": {
    "label": "Agent buyer score",
    "format": "number"
  },
  "descriptionTitle": {
    "label": "Headline",
    "format": "string"
  },
  "imageUrl": {
    "label": "Photo",
    "format": "string"
  },
  "imageCount": {
    "label": "Photos",
    "format": "number"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Boligsiden Scraper — Denmark Property Listings & Agents](https://apify.com/logiover/boligsiden-denmark-property-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/boligsiden-denmark-property-scraper) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/logiover/boligsiden-denmark-property-scraper.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
