Skip to content

43M Single Family House Land

Adrian Gortzak edited this page May 25, 2021 · 3 revisions

Get data

The code below gives an example of how you would use the client to fetch data from table 43M - Single Family House Land

import valueguard

vgClient = valueguard.Client()
vgClient.authenticate("<username>", "<password>")

property_key = "280192344"

i = 0
limit = 10

print(vgClient.taxation_registry_lands(offset=i, limit=limit, search_criteria={"property_key":property_key}))

Field List

Field name Lantm,namn Type Description
property_key* FNR varchar(9) Property key
year* AR varchar(4) The year the information in this table is to be available in the registry
id_taxation_unit* ID-TAXENHET* varchar(8) The Swedish Tax Agency's id key for a taxation unit
id_valuation_unit* ID-VE* bigint(10) The Swedish Tax Agency's id key for a valuation unit
assessed_value_plot JVARDE int(7) Tax value in tkr after adjustment.
adjustment_code_plot JUSTKOD varchar(3) Code for cause of adjustment on a valuation unit
no_identical_val_units VEANTLIK int(5) The number of merged valuation units with identical content.
plot_area AREALTMT int(7) Area for plots of land in sqm
subdivision_type FASTFOR varchar(2) Property law conditions on land:
00 = Information missing
01 = Independent
02 = Detachable
03 = Not detachable
detached_house_type TYPBEBY varchar(2) Type of building on land:
00 = Information missing
01 = Fully detached
02 = Chain house
03 = Townhouse
water_sewerage_type KODVA varchar(2) Access to water and sewage
First number, water:
1 = Municipal water all year round
2 = Private water all year round
3 = Municipal OR Private water in summer only
4 = Water is missing
Second number, sewage:
1 = Municipal sewage
2 = Individual sewage
3 = Sewage missing
shore_distance_type KODBEL varchar(2) Distance from the shoreline of any buildings
01 = (Beach) not more than 75 m and own beach
02 = (Near the beach) not more than 75 m without own beach
03 = (Near the beach) more than 75 m but not more than 150 m
04 = (Not beach or near the beach) more than 150 m
taxation_area RIKTVOMR varchar(7) Region for valuation
value_before_adjustment VARDEFJUST int(9) Value in tkr before any adjustment

Search Criteria fields

Field name Description
property_key Property key
valuation_unit_id Valuation unit id

Raw request

curl https://api.valueguard.se/v1/taxation/registry/lands?access_token={ACCESS_TOKEN}&offset={OFFSET}&limit={LIMIT}&{SEARCH_CRITERA AS VALUE-KEY PAIR &property_key="123"...} 
Clone this wiki locally