# Scrape sold house prices (slutpriser) in Gothenburg

**Use case:** 

Get Gothenburg villa slutpriser from Hemnet: closing price against asking price, price per m², plot size and sale date for every recent sale.

## 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": [
    "Göteborgs kommun"
  ],
  "sampleUrl": "https://www.hemnet.se/salda/bostader?item_types%5B%5D=villa&location_ids%5B%5D=898472",
  "searchLimit": 50,
  "proxySettings": {
    "useApifyProxy": false
  },
  "onlyNew": false
}
```

## Output

```json
{
  "id": {
    "label": "ID",
    "format": "string"
  },
  "mainImageUrl": {
    "label": "Photo",
    "format": "string"
  },
  "listingId": {
    "label": "Listing 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"
  },
  "tenure": {
    "label": "Tenure",
    "format": "string"
  },
  "askingPriceSek": {
    "label": "Asking (SEK)",
    "format": "integer"
  },
  "finalPriceSek": {
    "label": "Sold (SEK)",
    "format": "integer"
  },
  "priceChangeSek": {
    "label": "Change (SEK)",
    "format": "integer"
  },
  "priceChangePercent": {
    "label": "Change %",
    "format": "number"
  },
  "squareMeterPriceSek": {
    "label": "SEK/m²",
    "format": "integer"
  },
  "feeSek": {
    "label": "Fee (SEK)",
    "format": "integer"
  },
  "runningCostsSek": {
    "label": "Running (SEK)",
    "format": "integer"
  },
  "numberOfRooms": {
    "label": "Rooms",
    "format": "number"
  },
  "livingAreaSqm": {
    "label": "Living m²",
    "format": "number"
  },
  "supplementalAreaSqm": {
    "label": "Suppl. m²",
    "format": "number"
  },
  "landAreaSqm": {
    "label": "Land m²",
    "format": "number"
  },
  "floorNumber": {
    "label": "Floor",
    "format": "integer"
  },
  "floorsInBuilding": {
    "label": "Floors",
    "format": "integer"
  },
  "constructionYear": {
    "label": "Built",
    "format": "integer"
  },
  "soldAt": {
    "label": "Sold",
    "format": "string"
  },
  "housingCooperative": {
    "label": "BRF",
    "format": "string"
  },
  "imageUrls": {
    "label": "Photo URLs",
    "format": "array"
  },
  "brokerAgencyName": {
    "label": "Agency",
    "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.