Basic Data
Realty Categories /objekt/kategorien
Returns a list of realty categories
Parameters
- alle
-
Use 1 if you want to return all categories. Otherwise only categories with active realties will be returned.
Default: 0
Example
https://api.justimmo.at/rest/v1/objekt/kategorien?alle=1
<?xml version="1.0" encoding="UTF-8"?>
<justimmo>
<objektkategorie>
<id>3876</id>
<name>Topobjekte</name>
<sortablerank>1</sortablerank>
</objektkategorie>
</justimmo>
Realty Types /objekt/objektarten
Returns a list of realty types
Parameters
- alle
-
Use 1 if you want to return all realty types. Otherwise only realty types with active realties will be returned.
Default: 0
Example
https://api.justimmo.at/rest/v1/objekt/objektarten
<?xml version="1.0" encoding="UTF-8"?>
<justimmo>
<objektart>
<id>5</id>
<name>Büro / Praxis</name>
<key>buero_praxen</key>
<attributename>buero_typ</attributename>
</objektart>
<objektart>
<id>3</id>
<name>Haus</name>
<key>haus</key>
<attributename>haustyp</attributename>
</objektart>
<objektart>
<id>2</id>
<name>Wohnung</name>
<key>wohnung</key>
<attributename>wohnungtyp</attributename>
</objektart>
</justimmo>
Countries /objekt/laender
Returns a list of all countries
Parameters
- alle
-
Use 1 if you want to return all countries. Otherwise only countries with active realties will be returned.
Default: 0
Example
https://api.justimmo.at/rest/v1/objekt/laender
<?xml version="1.0" encoding="UTF-8"?>
<justimmo>
<land>
<id>17</id>
<name>Österreich</name>
<iso2>AT</iso2>
<iso3>AUT</iso3>
</land>
<land>
<id>216</id>
<name>Thailand</name>
<iso2>TH</iso2>
<iso3>THA</iso3>
</land>
</justimmo>
Federal States /objekt/bundeslaender
Returns a list of all federal states
Parameters
- alle
-
Use 1 if you want to return all federal states. Otherwise only federal states with active realties will be returned.
Default: 0 - land
- Id or ISO 2 code of the country
Example
All federal states of austria
https://api.justimmo.at/rest/v1/objekt/bundeslaender?land=AT&alle=1
<?xml version="1.0" encoding="UTF-8"?>
<justimmo>
<bundesland>
<id>126</id>
<name>Burgenland</name>
<landid>17</landid>
<fipscode>01</fipscode>
<iso31662code>AT-1</iso31662code>
</bundesland>
<bundesland>
<id>127</id>
<name>Kärnten</name>
<landid>17</landid>
<fipscode>02</fipscode>
<iso31662code>AT-2</iso31662code>
</bundesland>
<!-- .... -->
</justimmo>
Regions /objekt/regionen
Returns a list of all regions
Parameters
- alle
-
Use 1 if you want to return all regions. Otherwise only regions with active realties will be returned.
Default: 0 - land
- Id or ISO 2 code of the country
- bundesland
- Id of the federal state
Example
All regions of Vienna
https://api.justimmo.at/rest/v1/objekt/regionen?land=AT&bundesland=134&alle=1
<?xml version="1.0" encoding="UTF-8"?>
<justimmo>
<region>
<id>39</id>
<name>1., Innere Stadt</name>
</region>
<region>
<id>58</id>
<name>2., Leopoldstadt</name>
</region>
<!-- .... -->
</justimmo>
Zip codes and cities /objekt/plzsUndOrte
Returns a list of all zip codes with their city name
Parameters
- alle
-
Use 1 if you want to return all zip codes. Otherwise only zip codes with active realties will be returned.
Default: 0 - land
- Id or ISO 2 code of the country
- bundesland
- Id of the federal state
Example
All zip codes with their city names of Tirol
https://api.justimmo.at/rest/v1/objekt/plzsUndOrte?land=AT&bundesland=132&alle=1
<?xml version="1.0" encoding="UTF-8"?>
<justimmo>
<postleitzahl>
<id>567</id>
<landid>17</landid>
<regionid>40</regionid>
<plz>6020</plz>
<ort>Innsbruck</ort>
<bundeslandid>132</bundeslandid>
</postleitzahl>
<postleitzahl>
<id>462</id>
<landid>17</landid>
<regionid>41</regionid>
<plz>6060</plz>
<ort>Hall in Tirol</ort>
<bundeslandid>132</bundeslandid>
</postleitzahl>
<postleitzahl>
<id>465</id>
<landid>17</landid>
<regionid>41</regionid>
<plz>6063</plz>
<ort>Rum</ort>
<bundeslandid>132</bundeslandid>
</postleitzahl>
<!-- .... -->
</justimmo>