# Scrape Hemnet property coordinates and areas for mapping

**Use case:** 

Scrape addresses, areas, municipalities and coordinates for every Skåne listing on Hemnet. Drop it straight into a map, a GIS layer or a geo join.

## Input

```json
{
  "urls": [
    "https://www.hemnet.se/bostader?location_ids%5B%5D=17753"
  ],
  "locations": [
    "Stockholms län",
    "Göteborg",
    "Nacka kommun"
  ],
  "sampleUrl": "https://www.hemnet.se/bostader?rooms_min=3&price_max=6000000&item_types%5B%5D=bostadsratt",
  "searchLimit": 50,
  "proxySettings": {
    "useApifyProxy": false
  },
  "onlyNew": false
}
```

## Output

```json
{
  "id": {
    "label": "ID",
    "format": "string"
  },
  "url": {
    "label": "Link",
    "format": "string"
  },
  "streetAddress": {
    "label": "Address",
    "format": "string"
  },
  "area": {
    "label": "Area",
    "format": "string"
  },
  "districts": {
    "label": "Districts",
    "format": "array"
  },
  "municipality": {
    "label": "Municipality",
    "format": "string"
  },
  "county": {
    "label": "County",
    "format": "string"
  },
  "latitude": {
    "label": "Lat",
    "format": "number"
  },
  "longitude": {
    "label": "Long",
    "format": "number"
  },
  "closestWaterDistanceMeters": {
    "label": "Water (m)",
    "format": "integer"
  },
  "coastlineDistanceMeters": {
    "label": "Coast (m)",
    "format": "integer"
  }
}
```

## 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.