Skip to main content
POST
/
api
/
hemnet
/
properties
/hemnet/properties
curl --request POST \
  --url https://api.anysite.io/api/hemnet/properties \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "property": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@hemnet_property",
    "title": "<string>",
    "street_address": "<string>",
    "area": "<string>",
    "post_code": "<string>",
    "municipality": {
      "@type": "@hemnet_location_ref",
      "id": "<string>",
      "name": "<string>"
    },
    "region": {
      "@type": "@hemnet_location_ref",
      "id": "<string>",
      "name": "<string>"
    },
    "district": {
      "@type": "@hemnet_location_ref",
      "id": "<string>",
      "name": "<string>"
    },
    "asking_price": {
      "@type": "@hemnet_money",
      "amount": 123,
      "formatted": "<string>"
    },
    "fee": {
      "@type": "@hemnet_money",
      "amount": 123,
      "formatted": "<string>"
    },
    "square_meter_price": {
      "@type": "@hemnet_money",
      "amount": 123,
      "formatted": "<string>"
    },
    "running_costs": {
      "@type": "@hemnet_money",
      "amount": 123,
      "formatted": "<string>"
    },
    "living_area": 123,
    "supplemental_area": 123,
    "land_area": 123,
    "formatted_floor": "<string>",
    "room_count": 123,
    "construction_year": "<string>",
    "housing_form": "<string>",
    "housing_form_groups": [],
    "tenure": "<string>",
    "energy_class": "<string>",
    "is_foreclosure": true,
    "is_new_construction": true,
    "is_upcoming": true,
    "is_project": true,
    "bidding_started": true,
    "days_on_hemnet": 123,
    "view_count": 123,
    "water_distance_meters": 123,
    "coastline_distance_meters": 123,
    "description": "<string>",
    "published_at": "<string>",
    "url": "<string>",
    "coordinates": [],
    "labels": [],
    "open_houses": [],
    "amenities": [],
    "broker": {
      "@type": "@hemnet_broker",
      "id": "<string>",
      "name": "<string>",
      "email": "<string>",
      "phone": "<string>",
      "alias": "<string>",
      "profile_url": "<string>",
      "image": "<string>"
    },
    "agency": {
      "@type": "@hemnet_agency",
      "id": "<string>",
      "name": "<string>",
      "alias": "<string>",
      "profile_url": "<string>",
      "email": "<string>",
      "phone": "<string>",
      "web_url": "<string>",
      "street_address": "<string>",
      "post_code": "<string>",
      "city": "<string>"
    },
    "brf": {
      "@type": "@hemnet_brf",
      "registration_number": "<string>",
      "name": "<string>"
    },
    "price_history": [],
    "images": [],
    "floor_plans": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
property
string
required

Hemnet listing id or a listing URL containing it

Minimum string length: 1
Examples:

"21740497"

"https://www.hemnet.se/bostad/lagenhet-1rum-vasjon-sollentuna-kommun-sodersatravagen-34a-21740497"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@hemnet_property
title
string | null
street_address
string | null
area
string | null
post_code
string | null
municipality
HemnetLocationRef · object
region
HemnetLocationRef · object
district
HemnetLocationRef · object
asking_price
HemnetMoney · object
fee
HemnetMoney · object
square_meter_price
HemnetMoney · object
running_costs
HemnetMoney · object
living_area
number | null
supplemental_area
number | null
land_area
number | null
formatted_floor
string | null
room_count
number | null
construction_year
string | null
housing_form
string | null
housing_form_groups
string[]
tenure
string | null
energy_class
string | null
is_foreclosure
boolean | null
is_new_construction
boolean | null
is_upcoming
boolean | null
is_project
boolean | null
bidding_started
boolean | null
days_on_hemnet
integer | null
view_count
integer | null
water_distance_meters
integer | null
coastline_distance_meters
integer | null
description
string | null
published_at
string | null
url
string | null
coordinates
number[]
labels
string[]
open_houses
HemnetOpenHouse · object[]
amenities
HemnetAmenity · object[]
broker
HemnetBroker · object
agency
HemnetAgency · object
brf
HemnetBrf · object
price_history
HemnetSaleRecord · object[]
images
string[]
floor_plans
string[]