# Scrape real estate broker contacts from Hemnet listings

**Use case:** 

Build a list of Swedish estate agencies from live Hemnet listings: broker name, agency, phone, email and website. Business contacts only, CSV ready.

## Input

```json
{
  "urls": [
    "https://www.hemnet.se/bostader?location_ids%5B%5D=17744&item_types%5B%5D=bostadsratt&price_max=5000000",
    "https://www.hemnet.se/salda/bostader?location_ids%5B%5D=18031",
    "https://www.hemnet.se/kommande/bostader?location_ids%5B%5D=17744",
    "https://www.hemnet.se/bostad/lagenhet-3rum-vastra-orminge-nacka-kommun-betsovagen-10-21761515",
    "https://www.hemnet.se/salda/lagenhet-2rum-norrmalm-skovde-kommun-kansligatan-7b-1311609520551872240"
  ],
  "locations": [
    "Stockholms kommun",
    "Göteborgs kommun",
    "Malmö kommun"
  ],
  "sampleUrl": "https://www.hemnet.se/bostader?location_ids%5B%5D=18031",
  "searchLimit": 25,
  "proxySettings": {
    "useApifyProxy": false
  },
  "onlyNew": false
}
```

## Output

```json
{
  "id": {
    "label": "ID",
    "format": "string"
  },
  "url": {
    "label": "Link",
    "format": "string"
  },
  "searchMode": {
    "label": "Search",
    "format": "string"
  },
  "streetAddress": {
    "label": "Address",
    "format": "string"
  },
  "area": {
    "label": "Area",
    "format": "string"
  },
  "municipality": {
    "label": "Municipality",
    "format": "string"
  },
  "housingForm": {
    "label": "Type",
    "format": "string"
  },
  "askingPriceSek": {
    "label": "Asking (SEK)",
    "format": "integer"
  },
  "numberOfRooms": {
    "label": "Rooms",
    "format": "number"
  },
  "livingAreaSqm": {
    "label": "Living m²",
    "format": "number"
  },
  "brokerName": {
    "label": "Broker",
    "format": "string"
  },
  "brokerEmail": {
    "label": "Broker Email",
    "format": "string"
  },
  "brokerPhone": {
    "label": "Broker Phone",
    "format": "string"
  },
  "brokerAgencyName": {
    "label": "Agency",
    "format": "string"
  },
  "brokerAgencyCity": {
    "label": "Agency City",
    "format": "string"
  },
  "brokerAgencyEmail": {
    "label": "Agency Email",
    "format": "string"
  },
  "brokerAgencyPhone": {
    "label": "Agency Phone",
    "format": "string"
  },
  "brokerAgencyUrl": {
    "label": "Agency Site",
    "format": "string"
  }
}
```

## About this Actor

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