Hemnet Scraper - Sweden Real Estate Data Extractor avatar

Hemnet Scraper - Sweden Real Estate Data Extractor

Pricing

from $2.00 / 1,000 results

Go to Apify Store
Hemnet Scraper - Sweden Real Estate Data Extractor

Hemnet Scraper - Sweden Real Estate Data Extractor

Extract property listings from Hemnet.se - prices, locations, agent info & images. Sweden's #1 real estate platform. Get detailed property data including financials, viewing dates, and amenities in structured JSON/CSV format.

Pricing

from $2.00 / 1,000 results

Rating

0.0

(0)

Developer

Amine Feriani

Amine Feriani

Maintained by Community

Actor stats

2

Bookmarked

2

Total users

1

Monthly active users

16 minutes ago

Last modified

Share

Hemnet Scraper 🇸🇪 - Sweden Real Estate Data Extractor

Scrape property listings from Hemnet.se — Sweden's #1 real estate platform with 90%+ market share. Extract prices, addresses, agent contacts, images, and 30+ data fields per property in structured JSON, CSV, or Excel format. Perfect for Swedish real estate market analysis, property investment research, PropTech applications, and lead generation.

No Hemnet API needed. No login required. Just paste a search URL and get clean, structured data in seconds.

🎯 What You Get

For every Swedish property listing, this scraper extracts:

  • 🏠 Property details: type (Villa, Lägenhet, Radhus), rooms, living area (m²), land area, year built, floor, amenities
  • 📍 Location data: address, neighborhood, city (kommun), county (län), distance to coast
  • 💰 Financial info: asking price (SEK), price per m², monthly fees (Avgift), annual running costs (Driftskostnad)
  • 👤 Agent contact: name, agency, phone, email
  • 🖼️ Media & dates: high-res images, viewing dates (visningar), full description

🚀 Quick Start (60 seconds)

  1. Click "Try for free" above
  2. Choose your scraping mode:
  • Search URL mode — paste any Hemnet search URL to scrape multiple properties

    {
    "searchUrl": "https://www.hemnet.se/bostader?location_ids[]=17744",
    "maxPages": 5
    }
  • Direct URLs mode — paste specific property URLs to scrape individual listings

    {
    "propertyUrls": [
    "https://www.hemnet.se/bostad/villa-5rum-vate-gotlands-kommun-19397535",
    "https://www.hemnet.se/bostad/lagenhet-3rum-stockholm-19397536"
    ]
    }
  1. Click "Start" and download results in JSON, CSV, or Excel

Input Parameters

ParameterTypeRequiredDescription
searchUrlStringNo*Hemnet search results URL
maxPagesIntegerNoNumber of pages to scrape (default: 1, max: 50)
propertyUrlsArrayNo*Direct property URLs to scrape

*At least one of searchUrl or propertyUrls must be provided.

Output

Each property listing includes:

{
"id": "19397535",
"url": "https://www.hemnet.se/bostad/villa-5rum-vate-gotlands-kommun-19397535",
"scraped_at": "2026-04-28T18:30:00.000Z",
"location": {
"address": "Väte Hässle 809",
"neighborhood": "Väte",
"city": "Gotlands kommun",
"county": "Gotlands län",
"distance_to_coast_m": 500
},
"property_details": {
"title": "Villa i Väte",
"type": "Villa",
"tenure": "Äganderätt",
"rooms": 5,
"living_area_sqm": 120,
"supplemental_area_sqm": 30,
"land_area_sqm": 1500,
"formatted_land_area": "1 500 m²",
"year_built": 1985,
"floor": "1/1",
"amenities": ["Fiber", "Garage", "Förråd"],
"is_new_construction": false
},
"financials": {
"asking_price_sek": 3500000,
"price_per_sqm": 29167,
"monthly_fee_sek": null,
"running_costs_year_sek": 25000
},
"agent": {
"name": "Erik Svensson",
"agency": "Svensk Fastighetsförmedling",
"phone": "+46-8-555-1234",
"email": "erik.svensson@svenskfast.se"
},
"content": {
"description": "Charmig villa nära havet...",
"viewing_dates": ["2026-05-01 10:00", "2026-05-03 14:00"],
"images": [
"https://bilder.hemnet.se/...",
"https://bilder.hemnet.se/..."
]
}
}

Complete Field Reference

Root Fields

FieldTypeDescription
idStringUnique Hemnet property ID
urlStringFull URL to the property listing on Hemnet.se
scraped_atString (ISO 8601)Timestamp when the property was scraped

Location Object

FieldTypeDescription
location.addressStringStreet address of the property
location.neighborhoodStringNeighborhood or area name (may include district hierarchy)
location.cityStringMunicipality/city name
location.countyStringCounty (län) name
location.distance_to_coast_mInteger/NullDistance to nearest coastline in meters (null if not applicable)

Property Details Object

FieldTypeDescription
property_details.titleStringProperty listing title from Hemnet
property_details.typeStringProperty type (Villa, Lägenhet, Radhus, Kedjehus, Parhus, etc.)
property_details.tenureStringOwnership type: "Äganderätt" (freehold), "Bostadsrätt" (tenant-ownership), "Hyresrätt" (rental)
property_details.roomsFloat/NullNumber of rooms (e.g., 3.5 means 3 rooms + 1 small room)
property_details.living_area_sqmFloat/NullLiving area in square meters (Boarea/Boyta)
property_details.supplemental_area_sqmFloat/NullSupplemental area in square meters (Biarea - e.g., attic, basement)
property_details.land_area_sqmFloat/NullLand/plot area in square meters (Tomtarea)
property_details.formatted_land_areaString/NullHuman-readable land area (e.g., "1 500 m²", "2,5 hektar")
property_details.year_builtInteger/NullYear the property was built
property_details.floorString/NullFloor information (e.g., "2/4" means 2nd floor out of 4)
property_details.amenitiesArrayList of available amenities (Fiber, Garage, Balkong, Terrass, etc.)
property_details.is_new_constructionBooleanTrue if the property is newly built/under construction

Financials Object

FieldTypeDescription
financials.asking_price_sekInteger/NullAsking price in Swedish Kronor (SEK)
financials.price_per_sqmInteger/NullPrice per square meter of living area (SEK/m²)
financials.monthly_fee_sekInteger/NullMonthly housing association fee (Avgift) - for Bostadsrätt properties
financials.running_costs_year_sekInteger/NullEstimated annual running costs (Driftskostnad) - for Villa/Radhus properties

Agent Object

FieldTypeDescription
agent.nameString/NullReal estate agent's full name
agent.agencyString/NullReal estate agency name
agent.phoneString/NullAgent's phone number (Swedish format)
agent.emailString/NullAgent's email address

Content Object

FieldTypeDescription
content.descriptionString/NullFull property description text from the listing
content.viewing_datesArrayList of scheduled open house dates in "YYYY-MM-DD HH:MM" format
content.imagesArrayList of property image URLs (high-resolution)

Data Export Formats

All data can be downloaded in multiple formats:

  • JSON - Complete structured data with all fields
  • CSV - Tabular format (nested objects flattened)
  • Excel - Spreadsheet with formatted columns
  • HTML Table - Web-viewable table format

Use Cases

Real Estate Agencies

  • Track competitor pricing
  • Monitor market trends
  • Generate comparative market analyses

Property Investors

  • Find undervalued properties
  • Track specific listings
  • Analyze neighborhood data

Market Researchers

  • Study Swedish housing market
  • Price trend analysis
  • Geographic market mapping

Tips for Best Results

  1. Use specific search filters - Narrow your search on Hemnet.se before copying the URL
  2. Monitor specific properties - Use direct URLs for properties you want to track over time
  3. Export formats - Download results as JSON, CSV, Excel, or HTML table