# Find homes for sale in Stockholm

**Use case:** 

Scrape homes for sale in Stockholm on Hemnet.se for market research and
price monitoring. Runs with searchQueries ["Stockholm"], listingType
for_sale, and maxPages 3. Export street address, asking price, rooms,
living area, housing form, broker agency, and coordinates as JSON, CSV,
or Excel. $1 per 1,000 listings scraped.

## Input

```json
{
  "startUrls": [],
  "searchQueries": [
    "Stockholm"
  ],
  "listingType": "for_sale",
  "itemTypes": [],
  "maxPages": 3,
  "maxListings": 0,
  "listingDetails": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "image": {
    "label": "Image",
    "format": "string"
  },
  "id": {
    "label": "Listing ID",
    "format": "string"
  },
  "url": {
    "label": "Listing URL",
    "format": "string"
  },
  "listingType": {
    "label": "Type",
    "format": "string"
  },
  "streetAddress": {
    "label": "Address",
    "format": "string"
  },
  "locationDescription": {
    "label": "Location",
    "format": "string"
  },
  "askingPrice": {
    "label": "Asking Price",
    "format": "string"
  },
  "finalPrice": {
    "label": "Final Price",
    "format": "string"
  },
  "rooms": {
    "label": "Rooms",
    "format": "string"
  },
  "livingArea": {
    "label": "Living Area",
    "format": "string"
  },
  "landArea": {
    "label": "Land Area",
    "format": "string"
  },
  "fee": {
    "label": "Monthly Fee",
    "format": "string"
  },
  "squareMeterPrice": {
    "label": "Price / m²",
    "format": "string"
  },
  "housingForm": {
    "label": "Housing Form",
    "format": "object"
  },
  "broker": {
    "label": "Broker",
    "format": "object"
  },
  "coordinates": {
    "label": "Coordinates",
    "format": "object"
  },
  "labels": {
    "label": "Labels",
    "format": "array"
  },
  "showings": {
    "label": "Showings",
    "format": "array"
  },
  "publishedAt": {
    "label": "Published At",
    "format": "string"
  },
  "soldAt": {
    "label": "Sold At",
    "format": "string"
  },
  "soldAtLabel": {
    "label": "Sold Label",
    "format": "string"
  },
  "priceChange": {
    "label": "Price Change",
    "format": "string"
  },
  "page": {
    "label": "Page",
    "format": "integer"
  },
  "totalResults": {
    "label": "Total Results",
    "format": "integer"
  },
  "searchUrl": {
    "label": "Search URL",
    "format": "string"
  },
  "details": {
    "label": "Listing Details",
    "format": "object"
  }
}
```

## About this Actor

This example demonstrates how to use [Hemnet.se Scraper - Swedish Real Estate Listings](https://apify.com/rigelbytes/hemnet-se-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/rigelbytes/hemnet-se-scraper.md) 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/rigelbytes/hemnet-se-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).
