We have official client libraries available for the following languages:
You can also used community based unofficial client libraries available for the following languages:
These implement authentication, HTTP communication and JSON serialization and thus make it easier to get started. We advise to use the officially supported libraries.
The Realo API uses a public and private key pair. The public key is used to authorize the consumer and is placed inside the Authorization
header. The private key is used to verify the integrity of the request by signing important parts of the request to generate a message signature. This signature is also placed inside the Authorization
header of the request.
The request signature is essentially a hash message authentication code (HMAC) generated using the private key and the “signature base string”. The signature base string contains 3 key parts of the request; the request method, url and body.
$baseString = $request->getMethod() . '&' . $request->getUri() . '&' . $request->getBody();
If you are sending a GET
request to https://api.realo.com/1.0/agencies
, then this would be the base string:
GET&https://api.realo.com/1.0/agencies&
To calculate the request signature using this base string, calculate the SHA256 HMAC using your private key and base64 encode the output. This is how the signature would be calculated using PHP:
$digest = hash_hmac('sha256', $baseString, $privateKey, true);
$signature = base64_encode($digest);
For Python this would look something like this:
digest = hmac.new(private_key.encode('utf-8'), msg=base_string.encode('utf-8'), digestmod=hashlib.sha256).digest()
signature = base64.b64encode(digest)
Once the signature is calculated, you can add it to the Authorization
header of the request with your public key. Both the public key and the request signature are required for every request sent to the Realo API.
Authorization: Realo key="$publicKey", signature="$signature" version="1.0"
It is important that your private key remains private. If your private key is compromised, please contact us at api@realo.com so that we can generate a new key pair.
The Realo API supports 4 HTTP methods for interacting with resources:
GET: Make a GET request to retrieve data.
POST: Use a POST request to create new resources.
PUT: Use a PUT request to update a resource.
DELETE: Make a DELETE request to remove a resource.
Resources are typically nouns like listings or agencies that you take actions on using supported HTTP verbs. Each resource is typically separated into a resource/{id}
format, with subresources following the same pattern. All available resources are described in this documentation.
All resources can be accessed via https://api.realo.com/1.0/
. The 1.0
part indicates the Realo API version. We aim to provide backwards compatibility within a major version of the Realo API.
When sending requests to the Realo API, the following headers should always be present:
User-Agent
Content-Type: only application/json
is supported
Authorization: including the public key and request signature
These headers are optional:
nl-BE
is passed, all addresses will be returned in dutchEndpoint returning multiple items will add pagination information to the response. Example:
{
"data": [...],
"links": {
"next": "http://api.realo.test/1.0/agencies?cursor=NTA"
}
}
To get all items for this endpoint, follow all next
links until there is no next
link or when there are no items left.
Our API will return a 429
status code when your API key has reached the rate limit.
We have a separate sandbox environment, available at https://api-sandbox.realo.com/1.0/
.
Please use this when doing development and/or integration testing.
We will not bill you for any requests performed on this environment.
NOTE: this only applies to customers NOT using our API, but instead to those who want to provide us with an XML feed containing their listings.
The customer is expected to generate an XML file, in accordance with the predefined XML schema. Then you are expected to expose this file over HTTPS and inform api@realo.com of the exact URL. Realo will periodically poll this URL and update its internal database accordingly.
This XML file will contain a list of your agencies and its active listings. These entities all need to have stable identifiers.
An example XML can be found here.
NOTE: this only applies to customers using our widget, this feature is not activated by default.
The most basic form of embedding our widget, is done by adding the following block of HTML to your website:
<script src="https://widget.realo.{countryIso}/{language}/estimate/{uniqueId}/widget.js"></script>
{countryIso}
is one of the following: be
, fr
, es
{language}
is one of the following: en
, nl
, fr
, es
(availability depends per {countryIso}
)
{uniqueId}
is provided to you by your account manager
By default, the widget will dynamically resize its dimensions based on its parent node. If you want to have more control over how the widget is sized, see the customization section.
Customizing the behaviour of the widget is possible by setting the global realoWidgetOptions
variable to an object
containing configuration parameters. This needs to be done before the widget is embedded. Changing the contents of
this variable after it has been embedded has no effect.
Example:
<script type="application/javascript">
window.realoWidgetOptions = {
'width': ...,
'height': ...,
'language': ...,
'border_style': ...,
'latitude': ...,
'longitude': ...,
'company': {
'name': ...,
'address': ...,
},
'customParameters': ...,
};
</script>
<script src="https://widget.realo.{countryIso}/{language}/estimate/{uniqueId}/widget.js"></script>
Available configuration parameters:
width
integer
height
integer
language
string
en
, nl
, fr
, es
(availability depends per {countryIso}
)border_style
string
rounded
, squared
, none
rounded
company.name
string
company.address
string
customParameters
map[string,string]
NOTE: the JS endpoint supports a limited form of passing these parameters in the query string, this is however deprecated
behaviour and might be phased out at some point in the future. Please switch to passing parameters through the realoWidgetOptions
variable.
id
(integer, read-only)
Unique identifier.
type
(enum[ListingType])
Property type.
secondaryType
(enum[EstateSecondaryType], optional)
Secondary Type.
buildingCondition
(enum[BuildingCondition], optional)
State of the building.
way
(enum[ListingWay])
Listing type.
status
(enum[ListingStatus], optional)
Listing status.
featured
(boolean, read-only)
Indicates if this is a featured/promoted listing.
listedAt
(datetime[iso8601], optional)
Start date and time of the listing.
updatedAt
(datetime[iso8601], optional)
Modification date and time of the listing.
availableAt
(datetime[iso8601], optional)
Availability date of the listing.
description
(map[enum[Language], string], optional)
An list of descriptions by language code.
title
(map[enum[Language], string], optional)
An list of titles by language code.
agency
(object[Agency], read-only)
Property agency.
id
(integer, read-only)
Id of the agency.
address
(object[Address])
Agency address.
id
(integer, optional)
Unique identifier.
type
(enum[AddressType], read-only)
Address precision.
countryIso
(enum[Country], optional)
Country ISO 3166-2 code.
admin1
(string, optional)
Admin1 (Province) name.
admin2
(string, optional)
Admin2 (Department) name.
locality
(string, optional)
Locality name.
subLocality
(string)
Sub-locality name.
district
(string, optional)
District name.
postalCode
(string, optional)
Postal code.
street
(string, optional)
Street name.
number
(string, optional)
House number.
box
(string, optional)
Box number.
text
(string, optional)
Free-form text, containing the full address to be resolved.
longitude
(number, optional)
The longitude coordinate.
latitude
(number, optional)
The latitude coordinate.
coordinatesAccuracy
(enum[AddressType], optional)
The accurracy of the coordinate.
parcel
(string, optional)
The parcel code, identifying the right parcel.
name
(string)
Name of the agency.
telephone
(string)
Telephone number of the agency.
mobile
(string, optional)
Mobile number of the agency.
email
(string)
Email address of the agency.
buyerLeadEmail
(string, optional)
Email address of the agency to receive buyer leads.
renterLeadEmail
(string, optional)
Email address of the agency to receive renter leads.
sellerLeadEmail
(string, optional)
Email address of the agency to receive seller leads.
letterLeadEmail
(string, optional)
Email address of the agency to receive letter (property owner) leads.
websiteUrl
(string)
Website URL of the agency.
language
(string)
Language of the agency.
sourceId
(integer, optional)
Your own id when using the api.
code
(string, optional)
Code of the agency.
feedUrl
(string, optional)
The publications Feed URL of the agency.
feedType
(string, optional)
The publications Feed URL type of the agency
REALO, POLIRIS, KYERO, OTHER.
avatarUrl
(string, optional)
The avatar image URL of the agency.
address
(object[Address])
Property address.
id
(integer, optional)
Unique identifier.
type
(enum[AddressType], read-only)
Address precision.
countryIso
(enum[Country], optional)
Country ISO 3166-2 code.
admin1
(string, optional)
Admin1 (Province) name.
admin2
(string, optional)
Admin2 (Department) name.
locality
(string, optional)
Locality name.
subLocality
(string)
Sub-locality name.
district
(string, optional)
District name.
postalCode
(string, optional)
Postal code.
street
(string, optional)
Street name.
number
(string, optional)
House number.
box
(string, optional)
Box number.
text
(string, optional)
Free-form text, containing the full address to be resolved.
longitude
(number, optional)
The longitude coordinate.
latitude
(number, optional)
The latitude coordinate.
coordinatesAccuracy
(enum[AddressType], optional)
The accurracy of the coordinate.
parcel
(string, optional)
The parcel code, identifying the right parcel.
addressVisible
(boolean, optional)
Show or hide the address on Realo.
price
(number, optional)
Property price, without formatting.
currency
(enum[Currency], optional)
Currency of the price.
priceVisible
(boolean, optional)
Whether to show or hide the price on Realo.
vatIncluded
(boolean, optional)
whether vat is included in price.
monthlyFixedCosts
(number, optional)
Monthly extra costs in the same currency as the price.
floor
(integer, optional)
Floor where the estate is located. Floor 0 represents the ground floor.
numberOfFloors
(integer, optional)
Total number of floors of the building where the property is located.
habitableArea
(number, optional)
Habitable size in square meters.
landArea
(number, optional)
Land size in square meters.
gardenArea
(number, optional)
Garden size in m².
garageArea
(number, optional)
Garage size in m².
terraceArea
(number, optional)
Terrace size in m².
basementArea
(number, optional)
Basement size in m².
balconyArea
(number, optional)
Balcony size in m².
numberOfBedrooms
(integer, optional)
Number of bedrooms.
numberOfBathrooms
(integer, optional)
Number of bathrooms.
numberOfToilets
(integer, optional)
Number of toilets.
numberOfGarages
(integer, optional)
Number of garages (i.e. number of parking spaces in the garages).
numberOfParkingSpaces
(integer, optional)
Number of outdoor parking spaces.
buildYear
(integer, optional)
Original build year.
renovationYear
(integer, optional)
Year of the last renovation.
cadastralIncome
(number, optional)
Cadastral income in the same currency as the price.
energyConsumption
(number, optional)
Energy consumption in kWh/m².
energyConsumptionYearly
(number, optional)
Energy consumption in kWh/y.
energyCertificateNumber
(string, optional)
Energy certificate number.
energyClassification
(enum[EnergyClassification], optional)
European classification for energy performance.
See https://en.wikipedia.org/wiki/Energy_Performance_Certificate.
eLevel
(integer, optional)
E Level or E-peil as defined by Flanders, is like E30 but we save 30.
kLevel
(integer, optional)
K Level or K-peil indicates the overall thermal insulation of the building.
co2Emissions
(number, optional)
CO² emissions in kg/m².
facadeWidth
(number, optional)
Width of the front facade in meters.
detachment
(enum[EstateDetachment], optional)
Estate detachment type.
heatingType
(enum[EstateHeatingType], optional)
Primary heating type.
gardenOrientation
(enum[Orientation], optional)
Orientation of the garden.
electricityInspectionReportType
(enum[ElectricityInspectionReportType], optional)
Electricity inspection report type.
floodProneLocation
(enum[EstateFloodProneLocation], optional)
Indicates if the estate is in a flood prone location.
delineatedArea
(enum[EstateDelineatedArea], optional)
Indicates if the estate is in a delineated area.
flags
(map[string, boolean], optional)
A list of additional properties of this estate. The true/false value indicates if a flag is available or not available.
Accepted Values can be found in: RPI_Public_Enum_EstateFlag.
pictures
(list[object[Picture]], read-only)
List of pictures.
id
(integer, read-only)
Unique identifier.
url
(string)
Picture url.
thumbnail
(string, read-only)
Thumbnail url.
md5Hash
(string, read-only)
Original md5 hash of the picture.
order
(integer, optional)
Picture order.
virtualTours
(list[object[VirtualTour]], optional)
List of virtual tours.
provider
(enum[VirtualTourProvider], optional)
Virtual tour provider.
sourceId
(string, optional)
Source ID as given by the provider.
Example: https://my.matterport.com/show/?m=aMBQj9caMwR has source ID aMBQj9caMwR.
url
(string, optional)
URL to the virtual tour, as given by the provider.
canonicalUrls
(map[enum[Language], string], read-only)
List of Realo urls by language.
agencyUrl
(map[enum[Language], string], optional)
Original agency website url of the listing or a list of agency urls by language code.
agencyReference
A reference to the original listing of the agency.
metadata
(map[string, mixed], optional)
Additional non-public metadata attached to this listing.
sourceId
Your unique identifier - Realo will throw an error when this value is already found for your account (maximum length 32 chars).
projectId
(integer, optional)
The main listingId of the project the listing belongs to.
This endpoint returns all active listings owned by the parent agency resource.
number
(required) Example: 1ID of the parent agency
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/json
[
{
"id": 53,
"type": "INVESTMENT_PROPERTY",
"secondaryType": null,
"buildingCondition": null,
"way": "SALE",
"status": "ACTIVE",
"featured": false,
"listedAt": "2016-01-01T00:00:00+00:00",
"updatedAt": "2025-02-19T16:54:28+00:00",
"availableAt": "2016-02-01T00:00:00+00:00",
"description": {
"NL": "Doloremque vel aut qui sunt autem itaque ullam ab. Id est quam quasi fugit quaerat. Dolor aspernatur dolorem qui. Amet velit eos in et dolorum qui.",
"FR": "Et cupiditate illum suscipit odit aspernatur in. Itaque voluptatem dolorem necessitatibus. Quia praesentium praesentium repellat ea excepturi."
},
"title": null,
"agency": {
"id": 976287598,
"address": {
"id": 5974822,
"type": "ADDRESS",
"countryIso": "BE",
"admin1": "Oost-Vlaanderen",
"admin2": "Aalst",
"locality": "Erpe-Mere",
"subLocality": null,
"district": null,
"postalCode": "9420",
"street": "Oudenaardsesteenweg",
"number": "441",
"box": null,
"text": null,
"longitude": null,
"latitude": null,
"coordinatesAccuracy": null
},
"name": "Welleman",
"telephone": "+3253848980",
"mobile": "+32497550050",
"email": "kristof@welleman.be",
"buyerLeadEmail": null,
"renterLeadEmail": null,
"sellerLeadEmail": null,
"letterLeadEmail": null,
"websiteUrl": "http://www.welleman.be",
"language": "NL",
"sourceId": null,
"code": "MZJGVZM",
"feedUrl": null,
"feedType": null,
"avatarUrl": "https://realocdn.com/image/1/BE-master_avatars_3fff34488c57c1fe4a1619a6f6c31293.jpg/3508x2480/300x300/0/ad8e"
},
"address": {
"id": 4366163,
"type": "ADDRESS",
"countryIso": "BE",
"admin1": "Oost-Vlaanderen",
"admin2": "Gent",
"locality": "Gent",
"subLocality": "Gent",
"district": "Sint-Jacobs",
"postalCode": "9000",
"street": "Sint-Jacobsnieuwstraat",
"number": "17",
"box": null,
"text": null,
"longitude": 3.7291261356305885,
"latitude": 51.05523026088052,
"coordinatesAccuracy": null
},
"addressVisible": true,
"price": 72127225.86,
"currency": "EUR",
"priceVisible": false,
"vatIncluded": null,
"monthlyFixedCosts": 255.55,
"floor": 8,
"numberOfFloors": 4,
"habitableArea": 10953.95,
"landArea": 218965135.85,
"gardenArea": null,
"garageArea": null,
"terraceArea": null,
"basementArea": null,
"balconyArea": null,
"numberOfBedrooms": 4,
"numberOfBathrooms": 7,
"numberOfToilets": 5,
"numberOfGarages": null,
"numberOfParkingSpaces": 6,
"buildYear": 1873,
"renovationYear": 2003,
"cadastralIncome": 0.2,
"energyConsumption": 4813447.69,
"energyConsumptionYearly": 32276.25,
"energyCertificateNumber": "4745f189-1505-3fed-a3df-0abdd1581a5b",
"energyClassification": null,
"eLevel": null,
"kLevel": null,
"co2Emissions": 148945.42,
"facadeWidth": 16661230.34,
"detachment": "SEMI_DETACHED",
"heatingType": "ELECTRICAL",
"gardenOrientation": "N",
"electricityInspectionReportType": "AVAILABLE_CONFORM",
"floodProneLocation": "POSSIBLE_FLOOD_PRONE_AREA",
"delineatedArea": "NOT_DISCLOSED",
"flags": {
"HAS_ALARM_SECURITY": true,
"HAS_PORCH": true,
"HAS_OFFICE": false
},
"pictures": [
{
"id": 80,
"url": "https://lorempixel.com/640/480/?97311",
"thumbnail": "https://lorempixel.com/640/480/?67648",
"md5Hash": "29af7d55a709f23e3866cd24a34797fb",
"order": 0
},
{
"id": 15,
"url": "https://lorempixel.com/640/480/?21221",
"thumbnail": "https://lorempixel.com/640/480/?48489",
"md5Hash": "c75d83e6097b9f321673da48fd9c73bf",
"order": 1
},
{
"id": 68,
"url": "https://lorempixel.com/640/480/?57312",
"thumbnail": "https://lorempixel.com/640/480/?90057",
"md5Hash": "32be443126004a543a4d54db4b44310a",
"order": 2
}
],
"virtualTours": null,
"canonicalUrls": {
"NL": "https://www.realo.be/nl/sint-jacobsnieuwstraat-17-9000-gent/4366163?l=53",
"FR": "https://www.realo.fr/nl/sint-jacobsnieuwstraat-17-9000-gent/4366163?l=53"
},
"agencyUrl": "http://www.collier.com/necessitatibus-esse-rerum-et-minima-facere-magni",
"agencyReference": 747484,
"contactEmail": null,
"contactPhone": null,
"metadata": {
"id": 146963
},
"isExternalListing": null,
"listingContactId": null,
"sourceId": null,
"projectId": null
}
]
This endpoint is responsible for the creation of new listings. It is a subresource of the agencies resource, which means that the newly created listing will be owned by the parent agency.
All new listings are be created with an UNPUBLISHED
status. Only published listings will trigger notifications for our users. To publish a listing, call the publish endpoint after you have added all pictures to the listing.
number
(required) Example: 1ID of the parent agency
Content-Type: application/json
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
{
"type": "INVESTMENT_PROPERTY",
"secondaryType": null,
"buildingCondition": null,
"way": "SALE",
"status": "ACTIVE",
"listedAt": "2016-01-01T00:00:00+00:00",
"updatedAt": "2025-02-19T16:54:28+00:00",
"availableAt": "2016-02-01T00:00:00+00:00",
"description": {
"NL": "Doloremque vel aut qui sunt autem itaque ullam ab. Id est quam quasi fugit quaerat. Dolor aspernatur dolorem qui. Amet velit eos in et dolorum qui.",
"FR": "Et cupiditate illum suscipit odit aspernatur in. Itaque voluptatem dolorem necessitatibus. Quia praesentium praesentium repellat ea excepturi."
},
"title": null,
"address": {
"id": 4366163,
"countryIso": "BE",
"admin1": "Oost-Vlaanderen",
"admin2": "Gent",
"locality": "Gent",
"subLocality": "Gent",
"district": "Sint-Jacobs",
"postalCode": "9000",
"street": "Sint-Jacobsnieuwstraat",
"number": "17",
"box": null,
"text": null,
"longitude": 3.7291261356305885,
"latitude": 51.05523026088052,
"coordinatesAccuracy": null
},
"addressVisible": true,
"price": 72127225.86,
"currency": "EUR",
"priceVisible": false,
"vatIncluded": null,
"monthlyFixedCosts": 255.55,
"floor": 8,
"numberOfFloors": 4,
"habitableArea": 10953.95,
"landArea": 218965135.85,
"gardenArea": null,
"garageArea": null,
"terraceArea": null,
"basementArea": null,
"balconyArea": null,
"numberOfBedrooms": 4,
"numberOfBathrooms": 7,
"numberOfToilets": 5,
"numberOfGarages": null,
"numberOfParkingSpaces": 6,
"buildYear": 1873,
"renovationYear": 2003,
"cadastralIncome": 0.2,
"energyConsumption": 4813447.69,
"energyConsumptionYearly": 32276.25,
"energyCertificateNumber": "4745f189-1505-3fed-a3df-0abdd1581a5b",
"energyClassification": null,
"eLevel": null,
"kLevel": null,
"co2Emissions": 148945.42,
"facadeWidth": 16661230.34,
"detachment": "SEMI_DETACHED",
"heatingType": "ELECTRICAL",
"gardenOrientation": "N",
"electricityInspectionReportType": "AVAILABLE_CONFORM",
"floodProneLocation": "POSSIBLE_FLOOD_PRONE_AREA",
"delineatedArea": "NOT_DISCLOSED",
"flags": {
"HAS_ALARM_SECURITY": true,
"HAS_PORCH": true,
"HAS_OFFICE": false
},
"virtualTours": null,
"agencyUrl": "http://www.collier.com/necessitatibus-esse-rerum-et-minima-facere-magni",
"agencyReference": 747484,
"metadata": {
"id": 146963
},
"sourceId": null,
"projectId": null
}
200
ShowHideContent-Type: application/json
{
"data": {
"id": 1
}
}
This endpoint is used to retrieve single listings.
number
(required) Example: 1ID of the listing
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/json
{
"id": 53,
"type": "INVESTMENT_PROPERTY",
"secondaryType": null,
"buildingCondition": null,
"way": "SALE",
"status": "ACTIVE",
"featured": false,
"listedAt": "2016-01-01T00:00:00+00:00",
"updatedAt": "2025-02-19T16:54:28+00:00",
"availableAt": "2016-02-01T00:00:00+00:00",
"description": {
"NL": "Doloremque vel aut qui sunt autem itaque ullam ab. Id est quam quasi fugit quaerat. Dolor aspernatur dolorem qui. Amet velit eos in et dolorum qui.",
"FR": "Et cupiditate illum suscipit odit aspernatur in. Itaque voluptatem dolorem necessitatibus. Quia praesentium praesentium repellat ea excepturi."
},
"title": null,
"agency": {
"id": 976287598,
"address": {
"id": 5974822,
"type": "ADDRESS",
"countryIso": "BE",
"admin1": "Oost-Vlaanderen",
"admin2": "Aalst",
"locality": "Erpe-Mere",
"subLocality": null,
"district": null,
"postalCode": "9420",
"street": "Oudenaardsesteenweg",
"number": "441",
"box": null,
"text": null,
"longitude": null,
"latitude": null,
"coordinatesAccuracy": null
},
"name": "Welleman",
"telephone": "+3253848980",
"mobile": "+32497550050",
"email": "kristof@welleman.be",
"buyerLeadEmail": null,
"renterLeadEmail": null,
"sellerLeadEmail": null,
"letterLeadEmail": null,
"websiteUrl": "http://www.welleman.be",
"language": "NL",
"sourceId": null,
"code": "MZJGVZM",
"feedUrl": null,
"feedType": null,
"avatarUrl": "https://realocdn.com/image/1/BE-master_avatars_3fff34488c57c1fe4a1619a6f6c31293.jpg/3508x2480/300x300/0/ad8e"
},
"address": {
"id": 4366163,
"type": "ADDRESS",
"countryIso": "BE",
"admin1": "Oost-Vlaanderen",
"admin2": "Gent",
"locality": "Gent",
"subLocality": "Gent",
"district": "Sint-Jacobs",
"postalCode": "9000",
"street": "Sint-Jacobsnieuwstraat",
"number": "17",
"box": null,
"text": null,
"longitude": 3.7291261356305885,
"latitude": 51.05523026088052,
"coordinatesAccuracy": null
},
"addressVisible": true,
"price": 72127225.86,
"currency": "EUR",
"priceVisible": false,
"vatIncluded": null,
"monthlyFixedCosts": 255.55,
"floor": 8,
"numberOfFloors": 4,
"habitableArea": 10953.95,
"landArea": 218965135.85,
"gardenArea": null,
"garageArea": null,
"terraceArea": null,
"basementArea": null,
"balconyArea": null,
"numberOfBedrooms": 4,
"numberOfBathrooms": 7,
"numberOfToilets": 5,
"numberOfGarages": null,
"numberOfParkingSpaces": 6,
"buildYear": 1873,
"renovationYear": 2003,
"cadastralIncome": 0.2,
"energyConsumption": 4813447.69,
"energyConsumptionYearly": 32276.25,
"energyCertificateNumber": "4745f189-1505-3fed-a3df-0abdd1581a5b",
"energyClassification": null,
"eLevel": null,
"kLevel": null,
"co2Emissions": 148945.42,
"facadeWidth": 16661230.34,
"detachment": "SEMI_DETACHED",
"heatingType": "ELECTRICAL",
"gardenOrientation": "N",
"electricityInspectionReportType": "AVAILABLE_CONFORM",
"floodProneLocation": "POSSIBLE_FLOOD_PRONE_AREA",
"delineatedArea": "NOT_DISCLOSED",
"flags": {
"HAS_ALARM_SECURITY": true,
"HAS_PORCH": true,
"HAS_OFFICE": false
},
"pictures": [
{
"id": 80,
"url": "https://lorempixel.com/640/480/?97311",
"thumbnail": "https://lorempixel.com/640/480/?67648",
"md5Hash": "29af7d55a709f23e3866cd24a34797fb",
"order": 0
},
{
"id": 15,
"url": "https://lorempixel.com/640/480/?21221",
"thumbnail": "https://lorempixel.com/640/480/?48489",
"md5Hash": "c75d83e6097b9f321673da48fd9c73bf",
"order": 1
},
{
"id": 68,
"url": "https://lorempixel.com/640/480/?57312",
"thumbnail": "https://lorempixel.com/640/480/?90057",
"md5Hash": "32be443126004a543a4d54db4b44310a",
"order": 2
}
],
"virtualTours": null,
"canonicalUrls": {
"NL": "https://www.realo.be/nl/sint-jacobsnieuwstraat-17-9000-gent/4366163?l=53",
"FR": "https://www.realo.fr/nl/sint-jacobsnieuwstraat-17-9000-gent/4366163?l=53"
},
"agencyUrl": "http://www.collier.com/necessitatibus-esse-rerum-et-minima-facere-magni",
"agencyReference": 747484,
"contactEmail": null,
"contactPhone": null,
"metadata": {
"id": 146963
},
"isExternalListing": null,
"listingContactId": null,
"sourceId": null,
"projectId": null
}
This endpoint is used to update listings and supports both partial and full update requests for a listing resource. You are free to choose if you want to send us only the fields which have changed or the entire updated listing resource.
Please note that you should also use this endpoint to mark listings as OFFMARKET
, SOLD
or RENTED
by changing the listing status.
number
(required) Example: 1ID of the listing
Content-Type: application/json
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
{
"type": "INVESTMENT_PROPERTY",
"secondaryType": null,
"buildingCondition": null,
"way": "SALE",
"status": "ACTIVE",
"listedAt": "2016-01-01T00:00:00+00:00",
"updatedAt": "2025-02-19T16:54:28+00:00",
"availableAt": "2016-02-01T00:00:00+00:00",
"description": {
"NL": "Doloremque vel aut qui sunt autem itaque ullam ab. Id est quam quasi fugit quaerat. Dolor aspernatur dolorem qui. Amet velit eos in et dolorum qui.",
"FR": "Et cupiditate illum suscipit odit aspernatur in. Itaque voluptatem dolorem necessitatibus. Quia praesentium praesentium repellat ea excepturi."
},
"title": null,
"address": {
"id": 4366163,
"countryIso": "BE",
"admin1": "Oost-Vlaanderen",
"admin2": "Gent",
"locality": "Gent",
"subLocality": "Gent",
"district": "Sint-Jacobs",
"postalCode": "9000",
"street": "Sint-Jacobsnieuwstraat",
"number": "17",
"box": null,
"text": null,
"longitude": 3.7291261356305885,
"latitude": 51.05523026088052,
"coordinatesAccuracy": null
},
"addressVisible": true,
"price": 72127225.86,
"currency": "EUR",
"priceVisible": false,
"vatIncluded": null,
"monthlyFixedCosts": 255.55,
"floor": 8,
"numberOfFloors": 4,
"habitableArea": 10953.95,
"landArea": 218965135.85,
"gardenArea": null,
"garageArea": null,
"terraceArea": null,
"basementArea": null,
"balconyArea": null,
"numberOfBedrooms": 4,
"numberOfBathrooms": 7,
"numberOfToilets": 5,
"numberOfGarages": null,
"numberOfParkingSpaces": 6,
"buildYear": 1873,
"renovationYear": 2003,
"cadastralIncome": 0.2,
"energyConsumption": 4813447.69,
"energyConsumptionYearly": 32276.25,
"energyCertificateNumber": "4745f189-1505-3fed-a3df-0abdd1581a5b",
"energyClassification": null,
"eLevel": null,
"kLevel": null,
"co2Emissions": 148945.42,
"facadeWidth": 16661230.34,
"detachment": "SEMI_DETACHED",
"heatingType": "ELECTRICAL",
"gardenOrientation": "N",
"electricityInspectionReportType": "AVAILABLE_CONFORM",
"floodProneLocation": "POSSIBLE_FLOOD_PRONE_AREA",
"delineatedArea": "NOT_DISCLOSED",
"flags": {
"HAS_ALARM_SECURITY": true,
"HAS_PORCH": true,
"HAS_OFFICE": false
},
"virtualTours": null,
"agencyUrl": "http://www.collier.com/necessitatibus-esse-rerum-et-minima-facere-magni",
"agencyReference": 747484,
"metadata": {
"id": 146963
},
"sourceId": null,
"projectId": null
}
200
ShowHideContent-Type: application/json
{
"success": true
}
Use this endpoint to delete listings.
WARNING! Do not use this endpoint if a listing was sold or rented. To mark a listing as sold or rented, use the update endpoint to set the status to SOLD
or RENTED
.
number
(required) Example: 1ID of the listing
Pictures need to be added to the listing using one or more additional picture upload calls. We offer a single picture upload endpoint and a batch upload endpoint.
Pictures can be added either by sending us the http://
(or https://
) location of the image, or a data://
uri containing the base64 encoded content of the image. More information about the date uri scheme can be found here: https://en.wikipedia.org/wiki/Data_URI_scheme
id
(integer, read-only)
Unique identifier.
url
(string)
Picture url.
thumbnail
(string, read-only)
Thumbnail url.
md5Hash
(string, read-only)
Original md5 hash of the picture.
order
(integer, optional)
Picture order.
Single picture upload endpoint.
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
{
"url": "https://realocdn.com/image/1/BE-master_listing_b38506_b38506ef15174f7d2ddfbe16c61e1318.jpg/1728x1080/1920x1080/2/f76e",
"order": 0
}
200
ShowHideContent-Type: application/json
{
"data": {
"id": 23895218
}
}
Batch picture upload endpoint.
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
[
{
"url": "https://realocdn.com/image/1/BE-master_listing_b38506_b38506ef15174f7d2ddfbe16c61e1318.jpg/1728x1080/1920x1080/2/f76e",
"order": 0
}
]
200
ShowHideContent-Type: application/json
{
"data": {
"ids": [
23895218,
23895219,
23895220
]
}
}
To move a picture, use this endpoint to update the order of a specific picture.
Use this endpoint to permanently remove a picture from a listing.
By default, all new active listings are created with an UNPUBLISHED
status. Publishing a listing will trigger a notification for our users. Make sure the information is correct and pictures are attached before publishing.
Publish an unpublished listing.
id
(integer, read-only)
Unique identifier.
secondaryType
(enum[EstateSecondaryType], optional)
Secondary Type.
way
(enum[ListingWay], optional)
Listing type.
status
(enum[ListingStatus], optional)
Project status.
price
(number, optional)
Property price, without formatting.
currency
(enum[Currency], optional)
Currency of the price.
priceVisible
(boolean, optional)
Whether to show or hide the price on Realo.
monthlyFixedCosts
(number, optional)
Monthly extra costs in the same currency as the price.
agency
(object[Agency], read-only)
Agency of the property.
id
(integer, read-only)
Id of the agency.
address
(object[Address])
Agency address.
id
(integer, optional)
Unique identifier.
type
(enum[AddressType], read-only)
Address precision.
countryIso
(enum[Country], optional)
Country ISO 3166-2 code.
admin1
(string, optional)
Admin1 (Province) name.
admin2
(string, optional)
Admin2 (Department) name.
locality
(string, optional)
Locality name.
subLocality
(string)
Sub-locality name.
district
(string, optional)
District name.
postalCode
(string, optional)
Postal code.
street
(string, optional)
Street name.
number
(string, optional)
House number.
box
(string, optional)
Box number.
text
(string, optional)
Free-form text, containing the full address to be resolved.
longitude
(number, optional)
The longitude coordinate.
latitude
(number, optional)
The latitude coordinate.
coordinatesAccuracy
(enum[AddressType], optional)
The accurracy of the coordinate.
parcel
(string, optional)
The parcel code, identifying the right parcel.
name
(string)
Name of the agency.
telephone
(string)
Telephone number of the agency.
mobile
(string, optional)
Mobile number of the agency.
email
(string)
Email address of the agency.
buyerLeadEmail
(string, optional)
Email address of the agency to receive buyer leads.
renterLeadEmail
(string, optional)
Email address of the agency to receive renter leads.
sellerLeadEmail
(string, optional)
Email address of the agency to receive seller leads.
letterLeadEmail
(string, optional)
Email address of the agency to receive letter (property owner) leads.
websiteUrl
(string)
Website URL of the agency.
language
(string)
Language of the agency.
sourceId
(integer, optional)
Your own id when using the api.
code
(string, optional)
Code of the agency.
feedUrl
(string, optional)
The publications Feed URL of the agency.
feedType
(string, optional)
The publications Feed URL type of the agency
REALO, POLIRIS, KYERO, OTHER.
avatarUrl
(string, optional)
The avatar image URL of the agency.
address
(object[Address])
The main address for this project.
id
(integer, optional)
Unique identifier.
type
(enum[AddressType], read-only)
Address precision.
countryIso
(enum[Country], optional)
Country ISO 3166-2 code.
admin1
(string, optional)
Admin1 (Province) name.
admin2
(string, optional)
Admin2 (Department) name.
locality
(string, optional)
Locality name.
subLocality
(string)
Sub-locality name.
district
(string, optional)
District name.
postalCode
(string, optional)
Postal code.
street
(string, optional)
Street name.
number
(string, optional)
House number.
box
(string, optional)
Box number.
text
(string, optional)
Free-form text, containing the full address to be resolved.
longitude
(number, optional)
The longitude coordinate.
latitude
(number, optional)
The latitude coordinate.
coordinatesAccuracy
(enum[AddressType], optional)
The accurracy of the coordinate.
parcel
(string, optional)
The parcel code, identifying the right parcel.
addressVisible
(boolean, optional)
Show or hide the address on Realo.
name
(string, optional)
Name of the project.
listedAt
(datetime[iso8601], optional)
Created date and time of the project in ISO8601 format.
updatedAt
(datetime[iso8601], optional)
Modification date and time of the project in ISO8601 format.
availableAt
(datetime[iso8601], optional)
Availability date of the listing.
description
(map[enum[Language], string], optional)
An list of descriptions, indexed by their language code.
title
(map[enum[Language], string], optional)
An list of titles by language code.
numberOfUnits
(integer, optional)
Total number of units.
pictures
(list[object[Picture]], read-only)
List of pictures for this project.
id
(integer, read-only)
Unique identifier.
url
(string)
Picture url.
thumbnail
(string, read-only)
Thumbnail url.
md5Hash
(string, read-only)
Original md5 hash of the picture.
order
(integer, optional)
Picture order.
agencyUrl
(string, optional)
Original agency website url for this project.
agencyReference
A reference to the original project of the agency.
featured
(boolean, read-only)
Indicates if this is a featured/promoted listing.
floor
(integer, optional)
Floor where the estate is located. Floor 0 represents the ground floor.
numberOfFloors
(integer, optional)
Total number of floors of the building where the property is located.
habitableArea
(number, optional)
Habitable size in square meters.
landArea
(number, optional)
Land size in square meters.
numberOfBedrooms
(integer, optional)
Number of bedrooms.
numberOfBathrooms
(integer, optional)
Number of bathrooms.
numberOfToilets
(integer, optional)
Number of toilets.
numberOfParkingSpaces
(integer, optional)
Number of parking spaces, both indoor and outdoor.
buildYear
(integer, optional)
Original build year.
renovationYear
(integer, optional)
Year of the last renovation.
cadastralIncome
(number, optional)
Cadastral income in the same currency as the price.
energyConsumption
(number, optional)
Energy consumption in kWh/m².
energyConsumptionYearly
(number, optional)
Energy consumption in kWh/y.
energyCertificateNumber
(string, optional)
Energy certificate number.
energyClassification
(enum[EnergyClassification], optional)
European classification for energy performance.
See https://en.wikipedia.org/wiki/Energy_Performance_Certificate.
co2Emissions
(number, optional)
CO² emissions in kg/m².
facadeWidth
(number, optional)
Width of the front facade in meters.
detachment
(enum[EstateDetachment], optional)
Estate detachment type.
heatingType
(enum[EstateHeatingType], optional)
Primary heating type.
gardenOrientation
(enum[Orientation], optional)
Orientation of the garden.
electricityInspectionReportType
(enum[ElectricityInspectionReportType], optional)
Electricity inspection report type.
floodProneLocation
(enum[EstateFloodProneLocation], optional)
Indicates if the estate is in a flood prone location.
delineatedArea
(enum[EstateDelineatedArea], optional)
Indicates if the estate is in a delineated area.
flags
(map[enum[EstateFlag], boolean], optional)
A list of additional properties of this estate. The true/false value indicates if a flag is available or not available.
virtualTours
(list[object[VirtualTour]], optional)
List of virtual tours.
provider
(enum[VirtualTourProvider], optional)
Virtual tour provider.
sourceId
(string, optional)
Source ID as given by the provider.
Example: https://my.matterport.com/show/?m=aMBQj9caMwR has source ID aMBQj9caMwR.
url
(string, optional)
URL to the virtual tour, as given by the provider.
canonicalUrls
(map[enum[Language], string], read-only)
List of Realo urls by language.
metadata
(array, optional)
Additional non-public metadata attached to this project.
sourceId
(string, optional)
Your unique identifier - Realo will throw an error when this value is already found for your account (maximum length 32 chars).
This endpoint returns all active projects owned by the parent agency resource.
number
(required) Example: 1ID of the agency
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/json
[
{
"id": 80,
"secondaryType": null,
"way": null,
"status": "ACTIVE",
"price": null,
"currency": null,
"priceVisible": null,
"monthlyFixedCosts": null,
"agency": {
"id": 66,
"address": {
"id": 54,
"type": "ADDRESS",
"countryIso": "BE",
"admin1": null,
"admin2": null,
"locality": "Limburg",
"subLocality": "Hoogstraten",
"district": "Waregem",
"postalCode": "6717",
"street": "Verhaeghehof",
"number": "8",
"box": "2",
"text": null,
"longitude": -83.686561,
"latitude": 41.430703,
"coordinatesAccuracy": null
},
"name": "Maes",
"telephone": "+165436701712",
"mobile": null,
"email": "martin.lea@bah.com",
"buyerLeadEmail": null,
"renterLeadEmail": null,
"sellerLeadEmail": null,
"letterLeadEmail": null,
"websiteUrl": "http://www.renard.com/eos-consectetur-ut-sunt-maiores-consequatur-ab",
"language": "BE",
"sourceId": null,
"code": null,
"feedUrl": null,
"feedType": null,
"avatarUrl": null
},
"address": {
"id": 4366163,
"type": "ADDRESS",
"countryIso": "BE",
"admin1": "Oost-Vlaanderen",
"admin2": "Gent",
"locality": "Gent",
"subLocality": "Gent",
"district": "Sint-Jacobs",
"postalCode": "9000",
"street": "Sint-Jacobsnieuwstraat",
"number": "17",
"box": null,
"text": null,
"longitude": 3.7291261356305885,
"latitude": 51.05523026088052,
"coordinatesAccuracy": null
},
"addressVisible": null,
"name": "Rerum sit ab quo iste.",
"listedAt": "2016-01-01T00:00:00+00:00",
"updatedAt": "2025-02-19T16:54:28+00:00",
"availableAt": null,
"description": {
"NL": "Nobis aut exercitationem aut quis ipsum inventore. Est ea aliquid corrupti aperiam. Sunt asperiores voluptatem maxime quod cum ex optio. Placeat sequi qui odit eos autem fugiat.",
"FR": "Non laboriosam minus architecto ea dolores. Aliquid consectetur voluptas consequatur inventore. Qui nihil deserunt maiores et. Laborum quibusdam eum esse laborum autem cupiditate."
},
"title": null,
"numberOfUnits": 6,
"pictures": [
{
"id": 77,
"url": "https://lorempixel.com/640/480/?90333",
"thumbnail": "https://lorempixel.com/640/480/?52484",
"md5Hash": "230ac9f50f8f6babf19741a17709853a",
"order": 0
},
{
"id": 53,
"url": "https://lorempixel.com/640/480/?22750",
"thumbnail": "https://lorempixel.com/640/480/?85877",
"md5Hash": "e17d7dc3d5ef1b710c73f8f9233cf69c",
"order": 1
},
{
"id": 71,
"url": "https://lorempixel.com/640/480/?36281",
"thumbnail": "https://lorempixel.com/640/480/?28023",
"md5Hash": "38a1e690af86d3f41cff986f06b895a9",
"order": 2
}
],
"agencyUrl": "http://jones.org/et-quibusdam-architecto-est-repellat-dicta-vero.html",
"agencyReference": 116816,
"featured": null,
"floor": null,
"numberOfFloors": null,
"habitableArea": null,
"landArea": null,
"numberOfBedrooms": null,
"numberOfBathrooms": null,
"numberOfToilets": null,
"numberOfParkingSpaces": null,
"buildYear": null,
"renovationYear": null,
"cadastralIncome": null,
"energyConsumption": null,
"energyConsumptionYearly": null,
"energyCertificateNumber": null,
"energyClassification": null,
"co2Emissions": null,
"facadeWidth": null,
"detachment": null,
"heatingType": null,
"gardenOrientation": null,
"electricityInspectionReportType": null,
"floodProneLocation": null,
"delineatedArea": null,
"flags": null,
"virtualTours": null,
"canonicalUrls": null,
"contactEmail": null,
"contactPhone": null,
"metadata": null,
"isExternalListing": null,
"listingContactId": null,
"sourceId": null
}
]
This endpoint is responsible for the creation of new projects. It is a subresource of the agencies resource, which means that the newly created project will be owned by the parent agency.
number
(required) Example: 1ID of the agency
Content-Type: application/json
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
{
"secondaryType": null,
"way": null,
"status": "ACTIVE",
"price": null,
"currency": null,
"priceVisible": null,
"monthlyFixedCosts": null,
"address": {
"id": 4366163,
"countryIso": "BE",
"admin1": "Oost-Vlaanderen",
"admin2": "Gent",
"locality": "Gent",
"subLocality": "Gent",
"district": "Sint-Jacobs",
"postalCode": "9000",
"street": "Sint-Jacobsnieuwstraat",
"number": "17",
"box": null,
"text": null,
"longitude": 3.7291261356305885,
"latitude": 51.05523026088052,
"coordinatesAccuracy": null
},
"addressVisible": null,
"name": "Rerum sit ab quo iste.",
"listedAt": "2016-01-01T00:00:00+00:00",
"updatedAt": "2025-02-19T16:54:28+00:00",
"availableAt": null,
"description": {
"NL": "Nobis aut exercitationem aut quis ipsum inventore. Est ea aliquid corrupti aperiam. Sunt asperiores voluptatem maxime quod cum ex optio. Placeat sequi qui odit eos autem fugiat.",
"FR": "Non laboriosam minus architecto ea dolores. Aliquid consectetur voluptas consequatur inventore. Qui nihil deserunt maiores et. Laborum quibusdam eum esse laborum autem cupiditate."
},
"title": null,
"numberOfUnits": 6,
"agencyUrl": "http://jones.org/et-quibusdam-architecto-est-repellat-dicta-vero.html",
"agencyReference": 116816,
"floor": null,
"numberOfFloors": null,
"habitableArea": null,
"landArea": null,
"numberOfBedrooms": null,
"numberOfBathrooms": null,
"numberOfToilets": null,
"numberOfParkingSpaces": null,
"buildYear": null,
"renovationYear": null,
"cadastralIncome": null,
"energyConsumption": null,
"energyConsumptionYearly": null,
"energyCertificateNumber": null,
"energyClassification": null,
"co2Emissions": null,
"facadeWidth": null,
"detachment": null,
"heatingType": null,
"gardenOrientation": null,
"electricityInspectionReportType": null,
"floodProneLocation": null,
"delineatedArea": null,
"flags": null,
"virtualTours": null,
"metadata": null,
"sourceId": null
}
200
ShowHideContent-Type: application/json
{
"id": 1
}
This endpoint is used to retrieve single projects.
number
(required) Example: 1ID of the project
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/json
{
"id": 80,
"secondaryType": null,
"way": null,
"status": "ACTIVE",
"price": null,
"currency": null,
"priceVisible": null,
"monthlyFixedCosts": null,
"agency": {
"id": 66,
"address": {
"id": 54,
"type": "ADDRESS",
"countryIso": "BE",
"admin1": null,
"admin2": null,
"locality": "Limburg",
"subLocality": "Hoogstraten",
"district": "Waregem",
"postalCode": "6717",
"street": "Verhaeghehof",
"number": "8",
"box": "2",
"text": null,
"longitude": -83.686561,
"latitude": 41.430703,
"coordinatesAccuracy": null
},
"name": "Maes",
"telephone": "+165436701712",
"mobile": null,
"email": "martin.lea@bah.com",
"buyerLeadEmail": null,
"renterLeadEmail": null,
"sellerLeadEmail": null,
"letterLeadEmail": null,
"websiteUrl": "http://www.renard.com/eos-consectetur-ut-sunt-maiores-consequatur-ab",
"language": "BE",
"sourceId": null,
"code": null,
"feedUrl": null,
"feedType": null,
"avatarUrl": null
},
"address": {
"id": 4366163,
"type": "ADDRESS",
"countryIso": "BE",
"admin1": "Oost-Vlaanderen",
"admin2": "Gent",
"locality": "Gent",
"subLocality": "Gent",
"district": "Sint-Jacobs",
"postalCode": "9000",
"street": "Sint-Jacobsnieuwstraat",
"number": "17",
"box": null,
"text": null,
"longitude": 3.7291261356305885,
"latitude": 51.05523026088052,
"coordinatesAccuracy": null
},
"addressVisible": null,
"name": "Rerum sit ab quo iste.",
"listedAt": "2016-01-01T00:00:00+00:00",
"updatedAt": "2025-02-19T16:54:28+00:00",
"availableAt": null,
"description": {
"NL": "Nobis aut exercitationem aut quis ipsum inventore. Est ea aliquid corrupti aperiam. Sunt asperiores voluptatem maxime quod cum ex optio. Placeat sequi qui odit eos autem fugiat.",
"FR": "Non laboriosam minus architecto ea dolores. Aliquid consectetur voluptas consequatur inventore. Qui nihil deserunt maiores et. Laborum quibusdam eum esse laborum autem cupiditate."
},
"title": null,
"numberOfUnits": 6,
"pictures": [
{
"id": 77,
"url": "https://lorempixel.com/640/480/?90333",
"thumbnail": "https://lorempixel.com/640/480/?52484",
"md5Hash": "230ac9f50f8f6babf19741a17709853a",
"order": 0
},
{
"id": 53,
"url": "https://lorempixel.com/640/480/?22750",
"thumbnail": "https://lorempixel.com/640/480/?85877",
"md5Hash": "e17d7dc3d5ef1b710c73f8f9233cf69c",
"order": 1
},
{
"id": 71,
"url": "https://lorempixel.com/640/480/?36281",
"thumbnail": "https://lorempixel.com/640/480/?28023",
"md5Hash": "38a1e690af86d3f41cff986f06b895a9",
"order": 2
}
],
"agencyUrl": "http://jones.org/et-quibusdam-architecto-est-repellat-dicta-vero.html",
"agencyReference": 116816,
"featured": null,
"floor": null,
"numberOfFloors": null,
"habitableArea": null,
"landArea": null,
"numberOfBedrooms": null,
"numberOfBathrooms": null,
"numberOfToilets": null,
"numberOfParkingSpaces": null,
"buildYear": null,
"renovationYear": null,
"cadastralIncome": null,
"energyConsumption": null,
"energyConsumptionYearly": null,
"energyCertificateNumber": null,
"energyClassification": null,
"co2Emissions": null,
"facadeWidth": null,
"detachment": null,
"heatingType": null,
"gardenOrientation": null,
"electricityInspectionReportType": null,
"floodProneLocation": null,
"delineatedArea": null,
"flags": null,
"virtualTours": null,
"canonicalUrls": null,
"contactEmail": null,
"contactPhone": null,
"metadata": null,
"isExternalListing": null,
"listingContactId": null,
"sourceId": null
}
This endpoint is used to update projects and supports both partial and full update requests for a project resource.
number
(required) Example: 1ID of the project
Content-Type: application/json
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
{
"secondaryType": null,
"way": null,
"status": "ACTIVE",
"price": null,
"currency": null,
"priceVisible": null,
"monthlyFixedCosts": null,
"address": {
"id": 4366163,
"countryIso": "BE",
"admin1": "Oost-Vlaanderen",
"admin2": "Gent",
"locality": "Gent",
"subLocality": "Gent",
"district": "Sint-Jacobs",
"postalCode": "9000",
"street": "Sint-Jacobsnieuwstraat",
"number": "17",
"box": null,
"text": null,
"longitude": 3.7291261356305885,
"latitude": 51.05523026088052,
"coordinatesAccuracy": null
},
"addressVisible": null,
"name": "Rerum sit ab quo iste.",
"listedAt": "2016-01-01T00:00:00+00:00",
"updatedAt": "2025-02-19T16:54:28+00:00",
"availableAt": null,
"description": {
"NL": "Nobis aut exercitationem aut quis ipsum inventore. Est ea aliquid corrupti aperiam. Sunt asperiores voluptatem maxime quod cum ex optio. Placeat sequi qui odit eos autem fugiat.",
"FR": "Non laboriosam minus architecto ea dolores. Aliquid consectetur voluptas consequatur inventore. Qui nihil deserunt maiores et. Laborum quibusdam eum esse laborum autem cupiditate."
},
"title": null,
"numberOfUnits": 6,
"agencyUrl": "http://jones.org/et-quibusdam-architecto-est-repellat-dicta-vero.html",
"agencyReference": 116816,
"floor": null,
"numberOfFloors": null,
"habitableArea": null,
"landArea": null,
"numberOfBedrooms": null,
"numberOfBathrooms": null,
"numberOfToilets": null,
"numberOfParkingSpaces": null,
"buildYear": null,
"renovationYear": null,
"cadastralIncome": null,
"energyConsumption": null,
"energyConsumptionYearly": null,
"energyCertificateNumber": null,
"energyClassification": null,
"co2Emissions": null,
"facadeWidth": null,
"detachment": null,
"heatingType": null,
"gardenOrientation": null,
"electricityInspectionReportType": null,
"floodProneLocation": null,
"delineatedArea": null,
"flags": null,
"virtualTours": null,
"metadata": null,
"sourceId": null
}
200
ShowHideContent-Type: application/json
{
"success": true
}
number
(required) Example: 1ID of the project
This endpoint returns all active listings part of the parent project resource.
number
(required) Example: 1ID of the parent project
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/json
[
{
"id": 53,
"type": "INVESTMENT_PROPERTY",
"secondaryType": null,
"buildingCondition": null,
"way": "SALE",
"status": "ACTIVE",
"featured": false,
"listedAt": "2016-01-01T00:00:00+00:00",
"updatedAt": "2025-02-19T16:54:28+00:00",
"availableAt": "2016-02-01T00:00:00+00:00",
"description": {
"NL": "Doloremque vel aut qui sunt autem itaque ullam ab. Id est quam quasi fugit quaerat. Dolor aspernatur dolorem qui. Amet velit eos in et dolorum qui.",
"FR": "Et cupiditate illum suscipit odit aspernatur in. Itaque voluptatem dolorem necessitatibus. Quia praesentium praesentium repellat ea excepturi."
},
"title": null,
"agency": {
"id": 976287598,
"address": {
"id": 5974822,
"type": "ADDRESS",
"countryIso": "BE",
"admin1": "Oost-Vlaanderen",
"admin2": "Aalst",
"locality": "Erpe-Mere",
"subLocality": null,
"district": null,
"postalCode": "9420",
"street": "Oudenaardsesteenweg",
"number": "441",
"box": null,
"text": null,
"longitude": null,
"latitude": null,
"coordinatesAccuracy": null
},
"name": "Welleman",
"telephone": "+3253848980",
"mobile": "+32497550050",
"email": "kristof@welleman.be",
"buyerLeadEmail": null,
"renterLeadEmail": null,
"sellerLeadEmail": null,
"letterLeadEmail": null,
"websiteUrl": "http://www.welleman.be",
"language": "NL",
"sourceId": null,
"code": "MZJGVZM",
"feedUrl": null,
"feedType": null,
"avatarUrl": "https://realocdn.com/image/1/BE-master_avatars_3fff34488c57c1fe4a1619a6f6c31293.jpg/3508x2480/300x300/0/ad8e"
},
"address": {
"id": 4366163,
"type": "ADDRESS",
"countryIso": "BE",
"admin1": "Oost-Vlaanderen",
"admin2": "Gent",
"locality": "Gent",
"subLocality": "Gent",
"district": "Sint-Jacobs",
"postalCode": "9000",
"street": "Sint-Jacobsnieuwstraat",
"number": "17",
"box": null,
"text": null,
"longitude": 3.7291261356305885,
"latitude": 51.05523026088052,
"coordinatesAccuracy": null
},
"addressVisible": true,
"price": 72127225.86,
"currency": "EUR",
"priceVisible": false,
"vatIncluded": null,
"monthlyFixedCosts": 255.55,
"floor": 8,
"numberOfFloors": 4,
"habitableArea": 10953.95,
"landArea": 218965135.85,
"gardenArea": null,
"garageArea": null,
"terraceArea": null,
"basementArea": null,
"balconyArea": null,
"numberOfBedrooms": 4,
"numberOfBathrooms": 7,
"numberOfToilets": 5,
"numberOfGarages": null,
"numberOfParkingSpaces": 6,
"buildYear": 1873,
"renovationYear": 2003,
"cadastralIncome": 0.2,
"energyConsumption": 4813447.69,
"energyConsumptionYearly": 32276.25,
"energyCertificateNumber": "4745f189-1505-3fed-a3df-0abdd1581a5b",
"energyClassification": null,
"eLevel": null,
"kLevel": null,
"co2Emissions": 148945.42,
"facadeWidth": 16661230.34,
"detachment": "SEMI_DETACHED",
"heatingType": "ELECTRICAL",
"gardenOrientation": "N",
"electricityInspectionReportType": "AVAILABLE_CONFORM",
"floodProneLocation": "POSSIBLE_FLOOD_PRONE_AREA",
"delineatedArea": "NOT_DISCLOSED",
"flags": {
"HAS_ALARM_SECURITY": true,
"HAS_PORCH": true,
"HAS_OFFICE": false
},
"pictures": [
{
"id": 80,
"url": "https://lorempixel.com/640/480/?97311",
"thumbnail": "https://lorempixel.com/640/480/?67648",
"md5Hash": "29af7d55a709f23e3866cd24a34797fb",
"order": 0
},
{
"id": 15,
"url": "https://lorempixel.com/640/480/?21221",
"thumbnail": "https://lorempixel.com/640/480/?48489",
"md5Hash": "c75d83e6097b9f321673da48fd9c73bf",
"order": 1
},
{
"id": 68,
"url": "https://lorempixel.com/640/480/?57312",
"thumbnail": "https://lorempixel.com/640/480/?90057",
"md5Hash": "32be443126004a543a4d54db4b44310a",
"order": 2
}
],
"virtualTours": null,
"canonicalUrls": {
"NL": "https://www.realo.be/nl/sint-jacobsnieuwstraat-17-9000-gent/4366163?l=53",
"FR": "https://www.realo.fr/nl/sint-jacobsnieuwstraat-17-9000-gent/4366163?l=53"
},
"agencyUrl": "http://www.collier.com/necessitatibus-esse-rerum-et-minima-facere-magni",
"agencyReference": 747484,
"contactEmail": null,
"contactPhone": null,
"metadata": {
"id": 146963
},
"isExternalListing": null,
"listingContactId": null,
"sourceId": null,
"projectId": null
}
]
All listings created using this endpoint will be part of the parent project.
number
(required) Example: 1ID of the parent project
Content-Type: application/json
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
{
"type": "INVESTMENT_PROPERTY",
"secondaryType": null,
"buildingCondition": null,
"way": "SALE",
"status": "ACTIVE",
"listedAt": "2016-01-01T00:00:00+00:00",
"updatedAt": "2025-02-19T16:54:28+00:00",
"availableAt": "2016-02-01T00:00:00+00:00",
"description": {
"NL": "Doloremque vel aut qui sunt autem itaque ullam ab. Id est quam quasi fugit quaerat. Dolor aspernatur dolorem qui. Amet velit eos in et dolorum qui.",
"FR": "Et cupiditate illum suscipit odit aspernatur in. Itaque voluptatem dolorem necessitatibus. Quia praesentium praesentium repellat ea excepturi."
},
"title": null,
"address": {
"id": 4366163,
"countryIso": "BE",
"admin1": "Oost-Vlaanderen",
"admin2": "Gent",
"locality": "Gent",
"subLocality": "Gent",
"district": "Sint-Jacobs",
"postalCode": "9000",
"street": "Sint-Jacobsnieuwstraat",
"number": "17",
"box": null,
"text": null,
"longitude": 3.7291261356305885,
"latitude": 51.05523026088052,
"coordinatesAccuracy": null
},
"addressVisible": true,
"price": 72127225.86,
"currency": "EUR",
"priceVisible": false,
"vatIncluded": null,
"monthlyFixedCosts": 255.55,
"floor": 8,
"numberOfFloors": 4,
"habitableArea": 10953.95,
"landArea": 218965135.85,
"gardenArea": null,
"garageArea": null,
"terraceArea": null,
"basementArea": null,
"balconyArea": null,
"numberOfBedrooms": 4,
"numberOfBathrooms": 7,
"numberOfToilets": 5,
"numberOfGarages": null,
"numberOfParkingSpaces": 6,
"buildYear": 1873,
"renovationYear": 2003,
"cadastralIncome": 0.2,
"energyConsumption": 4813447.69,
"energyConsumptionYearly": 32276.25,
"energyCertificateNumber": "4745f189-1505-3fed-a3df-0abdd1581a5b",
"energyClassification": null,
"eLevel": null,
"kLevel": null,
"co2Emissions": 148945.42,
"facadeWidth": 16661230.34,
"detachment": "SEMI_DETACHED",
"heatingType": "ELECTRICAL",
"gardenOrientation": "N",
"electricityInspectionReportType": "AVAILABLE_CONFORM",
"floodProneLocation": "POSSIBLE_FLOOD_PRONE_AREA",
"delineatedArea": "NOT_DISCLOSED",
"flags": {
"HAS_ALARM_SECURITY": true,
"HAS_PORCH": true,
"HAS_OFFICE": false
},
"virtualTours": null,
"agencyUrl": "http://www.collier.com/necessitatibus-esse-rerum-et-minima-facere-magni",
"agencyReference": 747484,
"metadata": {
"id": 146963
},
"sourceId": null,
"projectId": null
}
200
ShowHideContent-Type: application/json
{
"data": {
"id": 1
}
}
By default, all new active projects are created with an UNPUBLISHED
status. Publishing a project will trigger notification for our users. Make sure the information is correct and pictures are attached before publishing.
When a project is published, all child listings are published as well.
id
(integer, read-only)
Id of the agency.
address
(object[Address])
Agency address.
id
(integer, optional)
Unique identifier.
type
(enum[AddressType], read-only)
Address precision.
countryIso
(enum[Country], optional)
Country ISO 3166-2 code.
admin1
(string, optional)
Admin1 (Province) name.
admin2
(string, optional)
Admin2 (Department) name.
locality
(string, optional)
Locality name.
subLocality
(string)
Sub-locality name.
district
(string, optional)
District name.
postalCode
(string, optional)
Postal code.
street
(string, optional)
Street name.
number
(string, optional)
House number.
box
(string, optional)
Box number.
text
(string, optional)
Free-form text, containing the full address to be resolved.
longitude
(number, optional)
The longitude coordinate.
latitude
(number, optional)
The latitude coordinate.
coordinatesAccuracy
(enum[AddressType], optional)
The accurracy of the coordinate.
parcel
(string, optional)
The parcel code, identifying the right parcel.
name
(string)
Name of the agency.
telephone
(string)
Telephone number of the agency.
mobile
(string, optional)
Mobile number of the agency.
email
(string)
Email address of the agency.
buyerLeadEmail
(string, optional)
Email address of the agency to receive buyer leads.
renterLeadEmail
(string, optional)
Email address of the agency to receive renter leads.
sellerLeadEmail
(string, optional)
Email address of the agency to receive seller leads.
letterLeadEmail
(string, optional)
Email address of the agency to receive letter (property owner) leads.
websiteUrl
(string)
Website URL of the agency.
language
(string)
Language of the agency.
sourceId
(integer, optional)
Your own id when using the api.
code
(string, optional)
Code of the agency.
feedUrl
(string, optional)
The publications Feed URL of the agency.
feedType
(string, optional)
The publications Feed URL type of the agency
REALO, POLIRIS, KYERO, OTHER.
avatarUrl
(string, optional)
The avatar image URL of the agency.
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/json
{
"id": 976287598,
"address": {
"id": 5974822,
"type": "ADDRESS",
"countryIso": "BE",
"admin1": "Oost-Vlaanderen",
"admin2": "Aalst",
"locality": "Erpe-Mere",
"subLocality": null,
"district": null,
"postalCode": "9420",
"street": "Oudenaardsesteenweg",
"number": "441",
"box": null,
"text": null,
"longitude": null,
"latitude": null,
"coordinatesAccuracy": null
},
"name": "Welleman",
"telephone": "+3253848980",
"mobile": "+32497550050",
"email": "kristof@welleman.be",
"buyerLeadEmail": null,
"renterLeadEmail": null,
"sellerLeadEmail": null,
"letterLeadEmail": null,
"websiteUrl": "http://www.welleman.be",
"language": "NL",
"sourceId": null,
"code": "MZJGVZM",
"feedUrl": null,
"feedType": null,
"avatarUrl": "https://realocdn.com/image/1/BE-master_avatars_3fff34488c57c1fe4a1619a6f6c31293.jpg/3508x2480/300x300/0/ad8e"
}
Content-Type: application/json
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
{
"address": {
"id": 5974822,
"countryIso": "BE",
"admin1": "Oost-Vlaanderen",
"admin2": "Aalst",
"locality": "Erpe-Mere",
"subLocality": null,
"district": null,
"postalCode": "9420",
"street": "Oudenaardsesteenweg",
"number": "441",
"box": null,
"text": null,
"longitude": null,
"latitude": null,
"coordinatesAccuracy": null
},
"name": "Welleman",
"telephone": "+3253848980",
"mobile": "+32497550050",
"email": "kristof@welleman.be",
"buyerLeadEmail": null,
"renterLeadEmail": null,
"sellerLeadEmail": null,
"letterLeadEmail": null,
"websiteUrl": "http://www.welleman.be",
"language": "NL",
"sourceId": null,
"code": "MZJGVZM",
"feedUrl": null,
"feedType": null,
"avatarUrl": "https://realocdn.com/image/1/BE-master_avatars_3fff34488c57c1fe4a1619a6f6c31293.jpg/3508x2480/300x300/0/ad8e"
}
200
ShowHideContent-Type: application/json
{
"id": 1
}
number
(required) Example: 1ID of the agency
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/json
{
"id": 976287598,
"address": {
"id": 5974822,
"type": "ADDRESS",
"countryIso": "BE",
"admin1": "Oost-Vlaanderen",
"admin2": "Aalst",
"locality": "Erpe-Mere",
"subLocality": null,
"district": null,
"postalCode": "9420",
"street": "Oudenaardsesteenweg",
"number": "441",
"box": null,
"text": null,
"longitude": null,
"latitude": null,
"coordinatesAccuracy": null
},
"name": "Welleman",
"telephone": "+3253848980",
"mobile": "+32497550050",
"email": "kristof@welleman.be",
"buyerLeadEmail": null,
"renterLeadEmail": null,
"sellerLeadEmail": null,
"letterLeadEmail": null,
"websiteUrl": "http://www.welleman.be",
"language": "NL",
"sourceId": null,
"code": "MZJGVZM",
"feedUrl": null,
"feedType": null,
"avatarUrl": "https://realocdn.com/image/1/BE-master_avatars_3fff34488c57c1fe4a1619a6f6c31293.jpg/3508x2480/300x300/0/ad8e"
}
number
(required) Example: 1ID of the agency
Content-Type: application/json
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
{
"address": {
"id": 5974822,
"countryIso": "BE",
"admin1": "Oost-Vlaanderen",
"admin2": "Aalst",
"locality": "Erpe-Mere",
"subLocality": null,
"district": null,
"postalCode": "9420",
"street": "Oudenaardsesteenweg",
"number": "441",
"box": null,
"text": null,
"longitude": null,
"latitude": null,
"coordinatesAccuracy": null
},
"name": "Welleman",
"telephone": "+3253848980",
"mobile": "+32497550050",
"email": "kristof@welleman.be",
"buyerLeadEmail": null,
"renterLeadEmail": null,
"sellerLeadEmail": null,
"letterLeadEmail": null,
"websiteUrl": "http://www.welleman.be",
"language": "NL",
"sourceId": null,
"code": "MZJGVZM",
"feedUrl": null,
"feedType": null,
"avatarUrl": "https://realocdn.com/image/1/BE-master_avatars_3fff34488c57c1fe4a1619a6f6c31293.jpg/3508x2480/300x300/0/ad8e"
}
200
ShowHideContent-Type: application/json
{
"success": true
}
firstName
(string)
First name of the agent.
lastName
(string)
Last name of the agent.
id
(integer, read-only)
Unique identifier.
address
(object[Address], optional)
The address.
id
(integer, optional)
Unique identifier.
type
(enum[AddressType], read-only)
Address precision.
countryIso
(enum[Country], optional)
Country ISO 3166-2 code.
admin1
(string, optional)
Admin1 (Province) name.
admin2
(string, optional)
Admin2 (Department) name.
locality
(string, optional)
Locality name.
subLocality
(string)
Sub-locality name.
district
(string, optional)
District name.
postalCode
(string, optional)
Postal code.
street
(string, optional)
Street name.
number
(string, optional)
House number.
box
(string, optional)
Box number.
text
(string, optional)
Free-form text, containing the full address to be resolved.
longitude
(number, optional)
The longitude coordinate.
latitude
(number, optional)
The latitude coordinate.
coordinatesAccuracy
(enum[AddressType], optional)
The accurracy of the coordinate.
parcel
(string, optional)
The parcel code, identifying the right parcel.
avatar
(string, optional)
Avatar image url.
proAccount
(boolean, read-only)
Indicates if this is a Realo Pro account.
telephone
(string, optional)
Telephone number in E.123 notation.
fax
(string, optional)
Fax number in E.123 notation.
mobile
(string, optional)
Mobile phone number in E.123 notation.
website
(string, optional)
Full website url.
facebook
(string, optional)
Facebook profile url.
twitter
(string, optional)
Twitter profile url.
gplus
(string, optional)
Google plus url.
email
(string)
Contact email.
description
(map[enum[Language], string], optional)
An list of descriptions by language code.
code
(string, optional)
Unique code.
number
(required) Example: 1ID of the agency
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/json
{
"id": 1597471455,
"address": null,
"avatar": "https://realocdn.com/image/1/BE-master_avatars_3f12d4d39171dd736baf11bb4f8d8b3a.png/525x478/300x300/2/1f0f",
"proAccount": null,
"telephone": null,
"fax": null,
"mobile": null,
"website": null,
"facebook": null,
"twitter": null,
"gplus": null,
"email": "kristof@welleman.be",
"description": null,
"code": null,
"firstName": "Kristof",
"lastName": "Welleman"
}
number
(required) Example: 1ID of the agency
Content-Type: application/json
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
{
"type": "INVESTMENT_PROPERTY",
"secondaryType": null,
"buildingCondition": null,
"way": "SALE",
"status": "ACTIVE",
"listedAt": "2016-01-01T00:00:00+00:00",
"updatedAt": "2025-02-19T16:54:28+00:00",
"availableAt": "2016-02-01T00:00:00+00:00",
"description": {
"NL": "Doloremque vel aut qui sunt autem itaque ullam ab. Id est quam quasi fugit quaerat. Dolor aspernatur dolorem qui. Amet velit eos in et dolorum qui.",
"FR": "Et cupiditate illum suscipit odit aspernatur in. Itaque voluptatem dolorem necessitatibus. Quia praesentium praesentium repellat ea excepturi."
},
"title": null,
"address": {
"id": 4366163,
"countryIso": "BE",
"admin1": "Oost-Vlaanderen",
"admin2": "Gent",
"locality": "Gent",
"subLocality": "Gent",
"district": "Sint-Jacobs",
"postalCode": "9000",
"street": "Sint-Jacobsnieuwstraat",
"number": "17",
"box": null,
"text": null,
"longitude": 3.7291261356305885,
"latitude": 51.05523026088052,
"coordinatesAccuracy": null
},
"addressVisible": true,
"price": 72127225.86,
"currency": "EUR",
"priceVisible": false,
"vatIncluded": null,
"monthlyFixedCosts": 255.55,
"floor": 8,
"numberOfFloors": 4,
"habitableArea": 10953.95,
"landArea": 218965135.85,
"gardenArea": null,
"garageArea": null,
"terraceArea": null,
"basementArea": null,
"balconyArea": null,
"numberOfBedrooms": 4,
"numberOfBathrooms": 7,
"numberOfToilets": 5,
"numberOfGarages": null,
"numberOfParkingSpaces": 6,
"buildYear": 1873,
"renovationYear": 2003,
"cadastralIncome": 0.2,
"energyConsumption": 4813447.69,
"energyConsumptionYearly": 32276.25,
"energyCertificateNumber": "4745f189-1505-3fed-a3df-0abdd1581a5b",
"energyClassification": null,
"eLevel": null,
"kLevel": null,
"co2Emissions": 148945.42,
"facadeWidth": 16661230.34,
"detachment": "SEMI_DETACHED",
"heatingType": "ELECTRICAL",
"gardenOrientation": "N",
"electricityInspectionReportType": "AVAILABLE_CONFORM",
"floodProneLocation": "POSSIBLE_FLOOD_PRONE_AREA",
"delineatedArea": "NOT_DISCLOSED",
"flags": {
"HAS_ALARM_SECURITY": true,
"HAS_PORCH": true,
"HAS_OFFICE": false
},
"virtualTours": null,
"agencyUrl": "http://www.collier.com/necessitatibus-esse-rerum-et-minima-facere-magni",
"agencyReference": 747484,
"metadata": {
"id": 146963
},
"sourceId": null,
"projectId": null
}
200
ShowHideContent-Type: application/json
{
"id": 1
}
number
(required) Example: 1ID of the agent
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/json
{
"id": 1597471455,
"address": null,
"avatar": "https://realocdn.com/image/1/BE-master_avatars_3f12d4d39171dd736baf11bb4f8d8b3a.png/525x478/300x300/2/1f0f",
"proAccount": null,
"telephone": null,
"fax": null,
"mobile": null,
"website": null,
"facebook": null,
"twitter": null,
"gplus": null,
"email": "kristof@welleman.be",
"description": null,
"code": null,
"firstName": "Kristof",
"lastName": "Welleman"
}
number
(required) Example: 1ID of the agent
Content-Type: application/json
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
{
"address": null,
"avatar": "https://realocdn.com/image/1/BE-master_avatars_3f12d4d39171dd736baf11bb4f8d8b3a.png/525x478/300x300/2/1f0f",
"telephone": null,
"fax": null,
"mobile": null,
"website": null,
"facebook": null,
"twitter": null,
"gplus": null,
"email": "kristof@welleman.be",
"description": null,
"code": null,
"firstName": "Kristof",
"lastName": "Welleman"
}
200
ShowHideContent-Type: application/json
{
"success": true
}
number
(required) Example: 1ID of the agent
id
(integer, read-only)
Unique identifier.
listingId
(integer, optional)
Realo listing id.
addressId
(integer, optional)
Address id.
threadId
(integer, read-only)
The inbox thread id on Realo.
date
(datetime[iso8601])
Creation date of this message.
user
(object[User])
User contact information.
id
(integer, read-only)
Unique identifier.
language
(enum[Language])
User language.
firstName
(string, optional)
First name.
lastName
(string, optional)
Last name.
email
(string, optional)
Primary email address.
message
(string)
The full enquiry message.
number
(required) Example: 1ID of the agency
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/json
[
{
"id": 72,
"listingId": 66,
"addressId": 56,
"threadId": 45,
"date": "2025-02-19T16:54:28+00:00",
"user": {
"id": 4,
"language": "SU",
"firstName": "Ruth",
"lastName": "Stehr",
"email": "amira.lang@gmail.com"
},
"message": "Ut laborum ut officia nam qui incidunt. Beatae molestias voluptas iste facere laudantium earum. Est natus quam impedit nisi est excepturi architecto. Molestias corrupti porro quos quia."
}
]
id
(integer, optional)
Unique identifier.
type
(enum[AddressType], read-only)
Address precision.
countryIso
(enum[Country], optional)
Country ISO 3166-2 code.
admin1
(string, optional)
Admin1 (Province) name.
admin2
(string, optional)
Admin2 (Department) name.
locality
(string, optional)
Locality name.
subLocality
(string)
Sub-locality name.
district
(string, optional)
District name.
postalCode
(string, optional)
Postal code.
street
(string, optional)
Street name.
number
(string, optional)
House number.
box
(string, optional)
Box number.
text
(string, optional)
Free-form text, containing the full address to be resolved.
longitude
(number, optional)
The longitude coordinate.
latitude
(number, optional)
The latitude coordinate.
coordinatesAccuracy
(enum[AddressType], optional)
The accurracy of the coordinate.
parcel
(string, optional)
The parcel code, identifying the right parcel.
string
(required) Example: Poel 16, 9000 GentThe textual address representation
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/json
[
{
"id": 4366163,
"type": "ADDRESS",
"countryIso": "BE",
"admin1": "Oost-Vlaanderen",
"admin2": "Gent",
"locality": "Gent",
"subLocality": "Gent",
"district": "Sint-Jacobs",
"postalCode": "9000",
"street": "Sint-Jacobsnieuwstraat",
"number": "17",
"box": null,
"text": null,
"longitude": 3.7291261356305885,
"latitude": 51.05523026088052,
"coordinatesAccuracy": null
}
]
number
(required) Example: 1ID of the address
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/json
{
"id": 4366163,
"type": "ADDRESS",
"countryIso": "BE",
"admin1": "Oost-Vlaanderen",
"admin2": "Gent",
"locality": "Gent",
"subLocality": "Gent",
"district": "Sint-Jacobs",
"postalCode": "9000",
"street": "Sint-Jacobsnieuwstraat",
"number": "17",
"box": null,
"text": null,
"longitude": 3.7291261356305885,
"latitude": 51.05523026088052,
"coordinatesAccuracy": null
}
id
(integer, read-only)
Unique identifier.
address
(object[Address])
Valuation address.
id
(integer, optional)
Unique identifier.
type
(enum[AddressType], read-only)
Address precision.
countryIso
(enum[Country], optional)
Country ISO 3166-2 code.
admin1
(string, optional)
Admin1 (Province) name.
admin2
(string, optional)
Admin2 (Department) name.
locality
(string, optional)
Locality name.
subLocality
(string)
Sub-locality name.
district
(string, optional)
District name.
postalCode
(string, optional)
Postal code.
street
(string, optional)
Street name.
number
(string, optional)
House number.
box
(string, optional)
Box number.
text
(string, optional)
Free-form text, containing the full address to be resolved.
longitude
(number, optional)
The longitude coordinate.
latitude
(number, optional)
The latitude coordinate.
coordinatesAccuracy
(enum[AddressType], optional)
The accurracy of the coordinate.
parcel
(string, optional)
The parcel code, identifying the right parcel.
type
(enum[ListingType])
Estate type.
parcelCode
(string, optional)
ParcelCode.
numberOfUnits
(integer, optional)
Number of units.
units
(array, optional)
Units of building, (array of addresses).
estateSecondaryType
(enum[EstateSecondaryType], optional)
Estate secondary type.
floor
(integer, optional)
Floor where the estate is located. Floor 0 represents the ground floor.
numberOfFloors
(integer, optional)
Total number of floors of the building where the property is located.
habitableArea
(number, optional)
Habitable size in m².
landArea
(number, optional)
Land size in m².
constructedArea
(number, optional)
Constructed size in m².
terraceArea
(number, optional)
Terrace size in m².
terraceOrientation
(enum[Orientation], optional)
Orientation of the terrace.
gardenArea
(number, optional)
Garden size in m².
gardenOrientation
(enum[Orientation], optional)
Orientation of the garden.
numberOfBedrooms
(integer, optional)
Number of bedrooms.
numberOfBathrooms
(integer, optional)
Number of bathrooms.
numberOfToilets
(integer, optional)
Number of toilets.
numberOfOtherRooms
(integer, optional)
Number of other rooms.
numberOfRooms
(integer, optional)
Total number of rooms.
numberOfGarages
(integer, optional)
Number of garages.
numberOfParkingSpaces
(integer, optional)
Number of parking spaces, both indoor and outdoor.
buildYear
(integer, optional)
Original build year.
renovationYear
(integer, optional)
Year of the last renovation.
heatingType
(string, optional)
Heating type.
energyConsumption
(number, optional)
Energy consumption in kWh/m².
energyConsumptionYearly
(number, optional)
Energy consumption in kWh/m²/year.
energyClassification
(enum[EnergyClassification], optional)
European classification for energy performance (https://en.wikipedia.org/wiki/Energy_Performance_Certificate).
facadeWidth
(number, optional)
Width of the front facade in meters.
flags
(map[string, boolean], optional)
A list of additional properties of this estate.
The true/false value indicates if a flag is available or not available.
A flag being omitted from the map means its availability is unknown.
Possible flags: API_Enum_ListingFlag.
ownEstimate
(object[OwnEstimate], optional)
Estimation provided by the agent.
saleEstimate
(number, optional)rentEstimate
(number, optional)explanation
(string, optional)estimate
(object[Estimate], read-only)
The Realo estimate.
saleEstimate
(number)
The sale estimate in the given currency.
rentEstimate
(number)
The rent estimate in the given currency.
currency
(enum[Currency])
The estimate currency.
type
(enum[EstimateType])
The estimate type.
info
(string, optional)
confidence
(string, optional)
parcelDepth
(number, optional, read-only)
Parcel depth in meters.
parcelWidth
(number, optional, read-only)
Parcel width in meters.
buildingArea
(number, optional, read-only)
Building area in square meters.
buildingDepth
(number, optional, read-only)
Building depth in meters.
buildingHeight
(number, optional, read-only)
Building depth in meters.
buildingDistanceFromStreet
(number, optional, read-only)
Building distance from the street in meters.
spatialPlanning
(enum[AddressSpatialPlanning], optional, read-only)
Spatial planning classification.
floodProneLocation
(enum[EstateFloodProneLocation], optional, read-only)
Flood prone classification.
detachment
(enum[EstateDetachment], optional)
Detachment type.
distanceFromStreet
(number, optional)
Distance from the street in meters.
neighbourhood
(array, optional)
Neighbourhood information.
mobility
(object[Mobility], optional)
Mobility information.
score
(number)
Realo mobility score.
distanceToCityCenter
(integer)
Distance to city center in meters.
distanceToBusStop
(integer)
Distance to bus stop in meters.
distanceToTrainStation
(integer)
Distance to train stop in meters.
distanceToSchool
(integer)
Distance to school in meters.
distanceToStores
(integer)
Distance to stores in meters.
facadeOrientation
(enum[Orientation], optional)
Orientation of the facade.
preemptionRight
(enum[PreemptionRight], optional)
imputedValues
(array, optional)
number
(required) Example: 1ID of the address
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/json
{
"id": null,
"address": {
"id": 4366163,
"type": "ADDRESS",
"countryIso": "BE",
"admin1": "Oost-Vlaanderen",
"admin2": "Gent",
"locality": "Gent",
"subLocality": "Gent",
"district": "Sint-Jacobs",
"postalCode": "9000",
"street": "Sint-Jacobsnieuwstraat",
"number": "17",
"box": null,
"text": null,
"longitude": 3.7291261356305885,
"latitude": 51.05523026088052,
"coordinatesAccuracy": null
},
"type": "OFFICE",
"parcelCode": "44802B1264/00C000",
"numberOfUnits": null,
"units": null,
"estateSecondaryType": null,
"floor": 0,
"numberOfFloors": 4,
"habitableArea": 220,
"landArea": 140,
"constructedArea": null,
"terraceArea": null,
"terraceOrientation": null,
"gardenArea": null,
"gardenOrientation": "NE",
"numberOfBedrooms": 0,
"numberOfBathrooms": 1,
"numberOfToilets": 4,
"numberOfOtherRooms": null,
"numberOfRooms": null,
"numberOfGarages": null,
"numberOfParkingSpaces": 0,
"buildYear": 1977,
"renovationYear": 2020,
"heatingType": "GAS",
"energyConsumption": 400,
"energyConsumptionYearly": null,
"energyClassification": null,
"facadeWidth": 8.6,
"flags": {
"HAS_DOUBLE_GLASS": true,
"HAS_ELEVATOR": true,
"HAS_INTERCOM": true,
"HAS_ALARM_SECURITY": true,
"HAS_SEWERAGE": true,
"HAS_AIR_CONDITIONING": true,
"HAS_INTERNET_CONNECTION": true
},
"ownEstimate": null,
"estimate": null,
"parcelDepth": 44.3,
"parcelWidth": 8.6,
"buildingArea": 255,
"buildingDepth": 30,
"buildingHeight": 17.5,
"buildingDistanceFromStreet": null,
"spatialPlanning": null,
"floodProneLocation": "NOT_A_FLOOD_PRONE_AREA",
"detachment": "SEMI_DETACHED",
"distanceFromStreet": null,
"neighbourhood": {
"averageAge": 39.42,
"averageEstimatePrice": 344042.38,
"averageHabitableArea": null,
"averageIncomePerPersonPerYear": 26031,
"medianIncomePerPersonPerYear": 19821,
"medianRentPrice": 1350,
"medianSalePrice": 306584.84,
"percentBigFamilies": 2.17,
"percentHigherEducatedPeople": 49.92,
"percentJobseekers": 4.86,
"percentMulticulturality": 15.8,
"percentSingles": 58.88,
"percentStudents": 6.27,
"populationDensity": null,
"totalPopulation": 2760,
"energyConsumptionAverage": 247
},
"mobility": {
"score": 0.94,
"distanceToCityCenter": 347,
"distanceToBusStop": 68,
"distanceToTrainStation": 791,
"distanceToSchool": 78,
"distanceToStores": 142
},
"facadeOrientation": "SW",
"preemptionRight": "NOT_DISCLOSED",
"imputedValues": []
}
number
(required) Example: 1ID of the address
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/json
{
"id": null,
"address": {
"id": 4366163,
"type": "ADDRESS",
"countryIso": "BE",
"admin1": "Oost-Vlaanderen",
"admin2": "Gent",
"locality": "Gent",
"subLocality": "Gent",
"district": "Sint-Jacobs",
"postalCode": "9000",
"street": "Sint-Jacobsnieuwstraat",
"number": "17",
"box": null,
"text": null,
"longitude": 3.7291261356305885,
"latitude": 51.05523026088052,
"coordinatesAccuracy": null
},
"type": "OFFICE",
"parcelCode": "44802B1264/00C000",
"numberOfUnits": null,
"units": null,
"estateSecondaryType": null,
"floor": 0,
"numberOfFloors": 4,
"habitableArea": 220,
"landArea": 140,
"constructedArea": null,
"terraceArea": null,
"terraceOrientation": null,
"gardenArea": null,
"gardenOrientation": "NE",
"numberOfBedrooms": 0,
"numberOfBathrooms": 1,
"numberOfToilets": 4,
"numberOfOtherRooms": null,
"numberOfRooms": null,
"numberOfGarages": null,
"numberOfParkingSpaces": 0,
"buildYear": 1977,
"renovationYear": 2020,
"heatingType": "GAS",
"energyConsumption": 400,
"energyConsumptionYearly": null,
"energyClassification": null,
"facadeWidth": 8.6,
"flags": {
"HAS_DOUBLE_GLASS": true,
"HAS_ELEVATOR": true,
"HAS_INTERCOM": true,
"HAS_ALARM_SECURITY": true,
"HAS_SEWERAGE": true,
"HAS_AIR_CONDITIONING": true,
"HAS_INTERNET_CONNECTION": true
},
"ownEstimate": null,
"estimate": null,
"parcelDepth": 44.3,
"parcelWidth": 8.6,
"buildingArea": 255,
"buildingDepth": 30,
"buildingHeight": 17.5,
"buildingDistanceFromStreet": null,
"spatialPlanning": null,
"floodProneLocation": "NOT_A_FLOOD_PRONE_AREA",
"detachment": "SEMI_DETACHED",
"distanceFromStreet": null,
"neighbourhood": {
"averageAge": 39.42,
"averageEstimatePrice": 344042.38,
"averageHabitableArea": null,
"averageIncomePerPersonPerYear": 26031,
"medianIncomePerPersonPerYear": 19821,
"medianRentPrice": 1350,
"medianSalePrice": 306584.84,
"percentBigFamilies": 2.17,
"percentHigherEducatedPeople": 49.92,
"percentJobseekers": 4.86,
"percentMulticulturality": 15.8,
"percentSingles": 58.88,
"percentStudents": 6.27,
"populationDensity": null,
"totalPopulation": 2760,
"energyConsumptionAverage": 247
},
"mobility": {
"score": 0.94,
"distanceToCityCenter": 347,
"distanceToBusStop": 68,
"distanceToTrainStation": 791,
"distanceToSchool": 78,
"distanceToStores": 142
},
"facadeOrientation": "SW",
"preemptionRight": "NOT_DISCLOSED",
"imputedValues": []
}
number
(required) Example: 1ID of the address
array
(required) Example: 1Requested keys
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/json
{
"id": null,
"address": {
"id": 4366163,
"type": "ADDRESS",
"countryIso": "BE",
"admin1": "Oost-Vlaanderen",
"admin2": "Gent",
"locality": "Gent",
"subLocality": "Gent",
"district": "Sint-Jacobs",
"postalCode": "9000",
"street": "Sint-Jacobsnieuwstraat",
"number": "17",
"box": null,
"text": null,
"longitude": 3.7291261356305885,
"latitude": 51.05523026088052,
"coordinatesAccuracy": null
},
"type": "OFFICE",
"parcelCode": "44802B1264/00C000",
"numberOfUnits": null,
"units": null,
"estateSecondaryType": null,
"floor": 0,
"numberOfFloors": 4,
"habitableArea": 220,
"landArea": 140,
"constructedArea": null,
"terraceArea": null,
"terraceOrientation": null,
"gardenArea": null,
"gardenOrientation": "NE",
"numberOfBedrooms": 0,
"numberOfBathrooms": 1,
"numberOfToilets": 4,
"numberOfOtherRooms": null,
"numberOfRooms": null,
"numberOfGarages": null,
"numberOfParkingSpaces": 0,
"buildYear": 1977,
"renovationYear": 2020,
"heatingType": "GAS",
"energyConsumption": 400,
"energyConsumptionYearly": null,
"energyClassification": null,
"facadeWidth": 8.6,
"flags": {
"HAS_DOUBLE_GLASS": true,
"HAS_ELEVATOR": true,
"HAS_INTERCOM": true,
"HAS_ALARM_SECURITY": true,
"HAS_SEWERAGE": true,
"HAS_AIR_CONDITIONING": true,
"HAS_INTERNET_CONNECTION": true
},
"ownEstimate": null,
"estimate": null,
"parcelDepth": 44.3,
"parcelWidth": 8.6,
"buildingArea": 255,
"buildingDepth": 30,
"buildingHeight": 17.5,
"buildingDistanceFromStreet": null,
"spatialPlanning": null,
"floodProneLocation": "NOT_A_FLOOD_PRONE_AREA",
"detachment": "SEMI_DETACHED",
"distanceFromStreet": null,
"neighbourhood": {
"averageAge": 39.42,
"averageEstimatePrice": 344042.38,
"averageHabitableArea": null,
"averageIncomePerPersonPerYear": 26031,
"medianIncomePerPersonPerYear": 19821,
"medianRentPrice": 1350,
"medianSalePrice": 306584.84,
"percentBigFamilies": 2.17,
"percentHigherEducatedPeople": 49.92,
"percentJobseekers": 4.86,
"percentMulticulturality": 15.8,
"percentSingles": 58.88,
"percentStudents": 6.27,
"populationDensity": null,
"totalPopulation": 2760,
"energyConsumptionAverage": 247
},
"mobility": {
"score": 0.94,
"distanceToCityCenter": 347,
"distanceToBusStop": 68,
"distanceToTrainStation": 791,
"distanceToSchool": 78,
"distanceToStores": 142
},
"facadeOrientation": "SW",
"preemptionRight": "NOT_DISCLOSED",
"imputedValues": []
}
id
(integer, read-only)
Unique identifier.
type
(enum[ListingType])
Property type.
way
(enum[ListingWay])
Property way.
status
(enum[ListingStatus], optional)
Transaction status.
listedAt
(datetime[iso8601], optional)
Start date and time of the transaction.
removedAt
(datetime[iso8601], optional)
End date and time of the transaction.
agency
(object[Agency], read-only)
Property agency.
id
(integer, read-only)
Id of the agency.
address
(object[Address])
Agency address.
id
(integer, optional)
Unique identifier.
type
(enum[AddressType], read-only)
Address precision.
countryIso
(enum[Country], optional)
Country ISO 3166-2 code.
admin1
(string, optional)
Admin1 (Province) name.
admin2
(string, optional)
Admin2 (Department) name.
locality
(string, optional)
Locality name.
subLocality
(string)
Sub-locality name.
district
(string, optional)
District name.
postalCode
(string, optional)
Postal code.
street
(string, optional)
Street name.
number
(string, optional)
House number.
box
(string, optional)
Box number.
text
(string, optional)
Free-form text, containing the full address to be resolved.
longitude
(number, optional)
The longitude coordinate.
latitude
(number, optional)
The latitude coordinate.
coordinatesAccuracy
(enum[AddressType], optional)
The accurracy of the coordinate.
parcel
(string, optional)
The parcel code, identifying the right parcel.
name
(string)
Name of the agency.
telephone
(string)
Telephone number of the agency.
mobile
(string, optional)
Mobile number of the agency.
email
(string)
Email address of the agency.
buyerLeadEmail
(string, optional)
Email address of the agency to receive buyer leads.
renterLeadEmail
(string, optional)
Email address of the agency to receive renter leads.
sellerLeadEmail
(string, optional)
Email address of the agency to receive seller leads.
letterLeadEmail
(string, optional)
Email address of the agency to receive letter (property owner) leads.
websiteUrl
(string)
Website URL of the agency.
language
(string)
Language of the agency.
sourceId
(integer, optional)
Your own id when using the api.
code
(string, optional)
Code of the agency.
feedUrl
(string, optional)
The publications Feed URL of the agency.
feedType
(string, optional)
The publications Feed URL type of the agency
REALO, POLIRIS, KYERO, OTHER.
avatarUrl
(string, optional)
The avatar image URL of the agency.
address
(object[Address])
Property address.
id
(integer, optional)
Unique identifier.
type
(enum[AddressType], read-only)
Address precision.
countryIso
(enum[Country], optional)
Country ISO 3166-2 code.
admin1
(string, optional)
Admin1 (Province) name.
admin2
(string, optional)
Admin2 (Department) name.
locality
(string, optional)
Locality name.
subLocality
(string)
Sub-locality name.
district
(string, optional)
District name.
postalCode
(string, optional)
Postal code.
street
(string, optional)
Street name.
number
(string, optional)
House number.
box
(string, optional)
Box number.
text
(string, optional)
Free-form text, containing the full address to be resolved.
longitude
(number, optional)
The longitude coordinate.
latitude
(number, optional)
The latitude coordinate.
coordinatesAccuracy
(enum[AddressType], optional)
The accurracy of the coordinate.
parcel
(string, optional)
The parcel code, identifying the right parcel.
price
(number, optional)
Property price, without formatting.
currency
(enum[Currency], optional)
Currency of the price.
monthlyFixedCosts
(number, optional)
Monthly extra costs in the same currency as the price.
floor
(integer, optional)
Floor where the estate is located. Floor 0 represents the ground floor.
numberOfFloors
(integer, optional)
Total number of floors of the building where the property is located.
habitableArea
(number, optional)
Habitable size in square meters.
landArea
(number, optional)
Land size in square meters.
numberOfBedrooms
(integer, optional)
Number of bedrooms.
numberOfBathrooms
(integer, optional)
Number of bathrooms.
numberOfToilets
(integer, optional)
Number of toilets.
numberOfParkingSpaces
(integer, optional)
Number of parking spaces, both indoor and outdoor.
buildYear
(integer, optional)
Original build year.
renovationYear
(integer, optional)
Year of the last renovation.
cadastralIncome
(number, optional)
Cadastral income in the same currency as the price.
energyConsumption
(number, optional)
Energy consumption in kWh/m².
energyConsumptionYearly
(number, optional)
Energy consumption in kWh/y.
energyCertificateNumber
(string, optional)
Energy certificate number.
energyClassification
(enum[EnergyClassification], optional)
European classification for energy performance.
See https://en.wikipedia.org/wiki/Energy_Performance_Certificate.
co2Emissions
(number, optional)
CO² emissions in kg/m².
facadeWidth
(number, optional)
Width of the front facade in meters.
detachment
(enum[EstateDetachment], optional)
Estate detachment type.
heatingType
(enum[EstateHeatingType], optional)
Primary heating type.
gardenOrientation
(enum[Orientation], optional)
Orientation of the garden.
electricityInspectionReportType
(enum[ElectricityInspectionReportType], optional)
Electricity inspection report type.
floodProneLocation
(enum[EstateFloodProneLocation], optional)
Indicates if the estate is in a flood prone location.
delineatedArea
(enum[EstateDelineatedArea], optional)
Indicates if the estate is in a delineated area.
flags
(map[string, boolean], optional)
A list of additional properties of this estate. The true/false value indicates if a flag is available or not available.
Possible values to be found in RPI_Public_Enum_EstateFlag.
agencyUrl
(string, optional)
Original agency website url of the listing.
agencyReference
A reference to the original listing of the agency.
This endpoint returns all transactions owned by the parent agency resource.
number
(required) Example: 1ID of the parent agency
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/json
[
{
"id": 60,
"type": "HOUSE",
"way": "SELL_ANNUITY",
"status": "ACTIVE",
"listedAt": "2016-01-01T00:00:00+00:00",
"removedAt": "2025-02-19T16:54:28+00:00",
"agency": {
"id": 60,
"address": {
"id": 25,
"type": "ADDRESS",
"countryIso": "BE",
"admin1": null,
"admin2": null,
"locality": "Oost-Vlaanderen",
"subLocality": "Oostende",
"district": "Namen",
"postalCode": "5520",
"street": "Etiennebaan",
"number": "8",
"box": "5",
"text": null,
"longitude": 168.644518,
"latitude": -29.488973,
"coordinatesAccuracy": null
},
"name": "Cools",
"telephone": "+817173838564",
"mobile": null,
"email": "hamza70@messaoudi.org",
"buyerLeadEmail": null,
"renterLeadEmail": null,
"sellerLeadEmail": null,
"letterLeadEmail": null,
"websiteUrl": "http://mahieu.com/quibusdam-voluptatem-et-fuga-eum.html",
"language": "BE",
"sourceId": null,
"code": null,
"feedUrl": null,
"feedType": null,
"avatarUrl": null
},
"address": {
"id": 52,
"type": "ADDRESS",
"countryIso": "BE",
"admin1": null,
"admin2": null,
"locality": "Vlaams-Brabant",
"subLocality": "Florenville",
"district": "Peer",
"postalCode": "3460",
"street": "Coolsbaan",
"number": "7",
"box": "2",
"text": null,
"longitude": -51.196313,
"latitude": -86.345645,
"coordinatesAccuracy": null
},
"price": 342061.55,
"currency": "EUR",
"monthlyFixedCosts": 1561545.62,
"floor": 7,
"numberOfFloors": 5,
"habitableArea": 6.75,
"landArea": 78.78,
"numberOfBedrooms": 5,
"numberOfBathrooms": 8,
"numberOfToilets": 6,
"numberOfParkingSpaces": 5,
"buildYear": 1635,
"renovationYear": 1662,
"cadastralIncome": 3131.86,
"energyConsumption": 25128423.18,
"energyConsumptionYearly": 174089128.01,
"energyCertificateNumber": "5d9d8d01-28d5-3dbf-af30-ffaffb1fc789",
"energyClassification": null,
"co2Emissions": 4676860.89,
"facadeWidth": 2379188.43,
"detachment": "SEMI_DETACHED",
"heatingType": "GAS",
"gardenOrientation": "S",
"electricityInspectionReportType": "AVAILABLE_NONCONFORM",
"floodProneLocation": "NOT_A_FLOOD_PRONE_AREA",
"delineatedArea": "DELINEATED_FLOOD_PRONE_AREA",
"flags": {
"HAS_SOLAR_BOILER": true,
"HAS_ALARM_SECURITY": true,
"IS_ROOM": true,
"HAS_OUTDOOR_SWIMMING_POOL": false
},
"agencyUrl": "http://www.hilpert.com/",
"agencyReference": 14662,
"contactEmail": null,
"contactPhone": null,
"avatarUrl": null
}
]
This endpoint is responsible for the creation of new transactions. It is a subresource of the agencies resource, which means that the newly created transaction will be owned by the parent agency.
number
(required) Example: 1ID of the parent agency
Content-Type: application/json
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
{
"type": "HOUSE",
"way": "SELL_ANNUITY",
"status": "ACTIVE",
"listedAt": "2016-01-01T00:00:00+00:00",
"removedAt": "2025-02-19T16:54:28+00:00",
"address": {
"id": 52,
"countryIso": "BE",
"admin1": null,
"admin2": null,
"locality": "Vlaams-Brabant",
"subLocality": "Florenville",
"district": "Peer",
"postalCode": "3460",
"street": "Coolsbaan",
"number": "7",
"box": "2",
"text": null,
"longitude": -51.196313,
"latitude": -86.345645,
"coordinatesAccuracy": null
},
"price": 342061.55,
"currency": "EUR",
"monthlyFixedCosts": 1561545.62,
"floor": 7,
"numberOfFloors": 5,
"habitableArea": 6.75,
"landArea": 78.78,
"numberOfBedrooms": 5,
"numberOfBathrooms": 8,
"numberOfToilets": 6,
"numberOfParkingSpaces": 5,
"buildYear": 1635,
"renovationYear": 1662,
"cadastralIncome": 3131.86,
"energyConsumption": 25128423.18,
"energyConsumptionYearly": 174089128.01,
"energyCertificateNumber": "5d9d8d01-28d5-3dbf-af30-ffaffb1fc789",
"energyClassification": null,
"co2Emissions": 4676860.89,
"facadeWidth": 2379188.43,
"detachment": "SEMI_DETACHED",
"heatingType": "GAS",
"gardenOrientation": "S",
"electricityInspectionReportType": "AVAILABLE_NONCONFORM",
"floodProneLocation": "NOT_A_FLOOD_PRONE_AREA",
"delineatedArea": "DELINEATED_FLOOD_PRONE_AREA",
"flags": {
"HAS_SOLAR_BOILER": true,
"HAS_ALARM_SECURITY": true,
"IS_ROOM": true,
"HAS_OUTDOOR_SWIMMING_POOL": false
},
"agencyUrl": "http://www.hilpert.com/",
"agencyReference": 14662
}
200
ShowHideContent-Type: application/json
{
"data": {
"id": 3
}
}
id
(integer, read-only)
Unique identifier.
agencyId
(integer, optional)
The ID of the agency that creates the valuation.
address
(object[Address])
Valuation address.
id
(integer, optional)
Unique identifier.
type
(enum[AddressType], read-only)
Address precision.
countryIso
(enum[Country], optional)
Country ISO 3166-2 code.
admin1
(string, optional)
Admin1 (Province) name.
admin2
(string, optional)
Admin2 (Department) name.
locality
(string, optional)
Locality name.
subLocality
(string)
Sub-locality name.
district
(string, optional)
District name.
postalCode
(string, optional)
Postal code.
street
(string, optional)
Street name.
number
(string, optional)
House number.
box
(string, optional)
Box number.
text
(string, optional)
Free-form text, containing the full address to be resolved.
longitude
(number, optional)
The longitude coordinate.
latitude
(number, optional)
The latitude coordinate.
coordinatesAccuracy
(enum[AddressType], optional)
The accurracy of the coordinate.
parcel
(string, optional)
The parcel code, identifying the right parcel.
shapeId
(integer, optional)
The unique identifier the parcel of the estate.
estateType
(enum[ListingType])
Estate type.
estateSecondaryType
(enum[EstateSecondaryType], optional)
Estate secondary type.
detachment
(enum[Detachment], optional)
Estate detachment type.
floor
(integer, optional)
Floor where the estate is located. Floor 0 represents the ground floor.
numberOfFloors
(integer, optional)
Total number of floors of the building where the property is located.
habitableArea
(number, optional)
Habitable size in m².
landArea
(number, optional)
Land size in m².
constructedArea
(number, optional)
Constructed size in m².
terraceArea
(number, optional)
Terrace size in m².
terraceOrientation
(enum[Orientation], optional)
Orientation of the terrace.
gardenArea
(number, optional)
Garden size in m².
gardenOrientation
(enum[Orientation], optional)
Orientation of the garden.
numberOfBedrooms
(integer, optional)
Number of bedrooms.
numberOfBathrooms
(integer, optional)
Number of bathrooms.
numberOfToilets
(integer, optional)
Number of toilets.
numberOfOtherRooms
(integer, optional)
Number of other rooms.
numberOfRooms
(integer, optional)
Total number of rooms.
numberOfGarages
(integer, optional)
Number of garages.
numberOfParkingSpaces
(integer, optional)
Number of parking spaces, both indoor and outdoor.
buildYear
(integer, optional)
Original build year.
renovationYear
(integer, optional)
Year of the last renovation.
energyConsumption
(number, optional)
Energy consumption in kWh/m².
energyClassification
(enum[EnergyClassification], optional)
European classification for energy performance (https://en.wikipedia.org/wiki/Energy_Performance_Certificate).
facadeWidth
(number, optional)
Width of the front facade in meters.
flags
(map[string, boolean], optional)
A list of additional properties of this estate.
The true/false value indicates if a flag is available or not available.
A flag being omitted from the map means its availability is unknown.
Values can be found in: API_Enum_ListingFlag.
ownEstimate
(object[OwnEstimate], optional)
Estimation provided by the agent.
saleEstimate
(number, optional)rentEstimate
(number, optional)explanation
(string, optional)estimate
(object[Estimate], read-only)
The Realo estimate.
saleEstimate
(number)
The sale estimate in the given currency.
rentEstimate
(number)
The rent estimate in the given currency.
currency
(enum[Currency])
The estimate currency.
type
(enum[EstimateType])
The estimate type.
info
(string, optional)
confidence
(string, optional)
parcelArea
(number, optional)
Parcel area in square meters.
parcelDepth
(number, optional)
Parcel depth in meters.
parcelWidth
(number, optional)
Parcel width in meters.
buildingArea
(number, optional)
Building area in square meters.
buildingDepth
(number, optional)
Building depth in meters.
buildingHeight
(number, optional)
Building height in meters.
buildingDistanceFromStreet
(number, optional)
Building distance from the street in meters.
spatialPlanning
(enum[AddressSpatialPlanning], optional)
Spatial planning classification.
isFloodProneLocation
(enum[EstateFloodProneLocation], optional)
Flood prone classification.
hasPreemptionRight
(boolean, optional)
Whether or not this address has pre-emption right.
returnEstimate
(boolean, optional)
Not only add the entry but also immediately return the estimate (same format as GET).
enrich
(boolean, optional)
Enrich the valuation with extra fields and imputation (default false).
allowUnmapped
(boolean, optional)
Allow estimate without knowing the exact address.
minimalAddressLevel
(enum[AddressType])
Minimal required address precision.
customParameters
(array, optional)
A list of custom client specific fields that can be used a a reference.
This endpoint returns all valuations owned by the current API key. This endpoint supports pagination.
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/json
[
{
"id": 807684380,
"agencyId": null,
"address": {
"id": 3910562,
"type": "ADDRESS",
"countryIso": "BE",
"admin1": "Oost-Vlaanderen",
"admin2": "Aalst",
"locality": "Aalst",
"subLocality": "Aalst",
"district": "Duivekeet",
"postalCode": "9300",
"street": "Ingang De Prez",
"number": "1",
"box": null,
"text": null,
"longitude": 4.029059499633957,
"latitude": 50.93983176798426,
"coordinatesAccuracy": null
},
"shapeId": 4213410,
"estateType": "HOUSE",
"estateSecondaryType": null,
"detachment": "TERRACED",
"floor": null,
"numberOfFloors": 2,
"habitableArea": 180,
"landArea": 270,
"constructedArea": null,
"terraceArea": null,
"terraceOrientation": null,
"gardenArea": 153,
"gardenOrientation": "SW",
"numberOfBedrooms": 3,
"numberOfBathrooms": 2,
"numberOfToilets": 2,
"numberOfOtherRooms": null,
"numberOfRooms": 4,
"numberOfGarages": 1,
"numberOfParkingSpaces": null,
"buildYear": 1921,
"renovationYear": 2003,
"energyConsumption": null,
"energyClassification": "C",
"facadeWidth": 9,
"flags": {
"HAS_ALARM_SECURITY": false,
"HAS_ATTIC": false,
"HAS_BASEMENT": false,
"HAS_DOUBLE_GLASS": true,
"HAS_DRESSING": true,
"HAS_ELEVATOR": false,
"HAS_FIREPLACE": true,
"HAS_GARDEN": true,
"HAS_JACUZZI": false,
"HAS_SAUNA": false,
"HAS_SOLAR_PANELS": true,
"HAS_SWIMMING_POOL": false
},
"ownEstimate": {
"saleEstimate": 380000,
"rentEstimate": null,
"explanation": null
},
"estimate": {
"saleEstimate": 396000,
"rentEstimate": 1040,
"currency": "EUR",
"type": null,
"info": "SHOWN",
"confidence": 64
},
"parcelArea": null,
"parcelDepth": 29,
"parcelWidth": 9,
"buildingArea": 130,
"buildingDepth": 19,
"buildingHeight": 7.4,
"buildingDistanceFromStreet": null,
"spatialPlanning": "RESIDENTIAL",
"isFloodProneLocation": null,
"hasPreemptionRight": null,
"returnEstimate": null,
"enrich": null,
"allowUnmapped": null,
"minimalAddressLevel": "ADDRESS",
"customParameters": {
"address": {
"id": null,
"type": null,
"addressId": null,
"shapeId": null,
"text": null,
"coordinates": null,
"coordinatesAccuracy": null,
"countryIso": "BE",
"admin1": null,
"admin2": null,
"locality": "Aalst",
"subLocality": null,
"district": null,
"postalCode": "9300",
"street": "Ingang De Prez",
"number": "1",
"premiseName": null,
"box": "",
"entrance": null,
"floor": null,
"door": null,
"language": null,
"geocoderVersion": null
},
"isHeritage": "NO",
"hasProtections": "NO",
"parcelWidth": 9,
"parcelDepth": 29,
"buildingArea": 130,
"buildingHeight": 7.4,
"buildingDepth": 19,
"floodProneLocation": "POSSIBLE_FLOOD_PRONE_AREA",
"floodProneBuildingScore": "C",
"floodProneParcelScore": "C",
"generalDestination": null,
"generalUse": null,
"preemptionRight": "UNKNOWN",
"cadastralIncome": null,
"buildingCondition": "GOOD",
"spatialPlanning": "RESIDENTIAL",
"addressText": "Ingang De Prez 1, 9300 Aalst",
"parcelLocation": null,
"distanceFromStreet": 3.5,
"numberOfStorageRooms": 0,
"renovationCondition": "PARTIALLY_RENOVATED",
"numberOfLivingRooms": 1,
"numberOfDiningRooms": 1,
"numberOfKitchenRooms": 1,
"numberOfOfficeRooms": 1,
"declaredValue": null,
"estimateMemo": null
}
},
{
"id": 810636140,
"agencyId": null,
"address": {
"id": 4248326,
"type": "ADDRESS",
"countryIso": "BE",
"admin1": "Oost-Vlaanderen",
"admin2": "Gent",
"locality": "Gent",
"subLocality": "Sint-Amandsberg",
"district": "Dampoort",
"postalCode": "9000",
"street": "Antwerpsesteenweg",
"number": "58",
"box": null,
"text": null,
"longitude": 3.7432838238186017,
"latitude": 51.05835498992631,
"coordinatesAccuracy": null
},
"shapeId": 19556025,
"estateType": "HOUSE",
"estateSecondaryType": null,
"detachment": "TERRACED",
"floor": null,
"numberOfFloors": 4,
"habitableArea": 420,
"landArea": 142,
"constructedArea": null,
"terraceArea": null,
"terraceOrientation": null,
"gardenArea": 30,
"gardenOrientation": "SE",
"numberOfBedrooms": 4,
"numberOfBathrooms": 2,
"numberOfToilets": 3,
"numberOfOtherRooms": null,
"numberOfRooms": 5,
"numberOfGarages": null,
"numberOfParkingSpaces": null,
"buildYear": 1900,
"renovationYear": 2010,
"energyConsumption": null,
"energyClassification": "C",
"facadeWidth": 6.5,
"flags": {
"HAS_ALARM_SECURITY": true,
"HAS_ATTIC": true,
"HAS_BASEMENT": true,
"HAS_DOUBLE_GLASS": true,
"HAS_DRESSING": true,
"HAS_ELEVATOR": false,
"HAS_FIREPLACE": false,
"HAS_GARDEN": true,
"HAS_JACUZZI": false,
"HAS_SAUNA": true,
"HAS_SOLAR_PANELS": false,
"HAS_SWIMMING_POOL": false
},
"ownEstimate": {
"saleEstimate": 880000,
"rentEstimate": null,
"explanation": null
},
"estimate": {
"saleEstimate": 673000,
"rentEstimate": 1940,
"currency": "EUR",
"type": null,
"info": "SHOWN",
"confidence": 63
},
"parcelArea": null,
"parcelDepth": 15,
"parcelWidth": 7,
"buildingArea": 110,
"buildingDepth": 21,
"buildingHeight": 19.2,
"buildingDistanceFromStreet": null,
"spatialPlanning": "RESIDENTIAL",
"isFloodProneLocation": null,
"hasPreemptionRight": null,
"returnEstimate": null,
"enrich": null,
"allowUnmapped": null,
"minimalAddressLevel": "ADDRESS",
"customParameters": {
"address": {
"id": null,
"type": null,
"addressId": null,
"shapeId": null,
"text": null,
"coordinates": null,
"coordinatesAccuracy": null,
"countryIso": "BE",
"admin1": null,
"admin2": null,
"locality": "Sint-Amandsberg",
"subLocality": null,
"district": null,
"postalCode": "9000",
"street": "Antwerpsesteenweg",
"number": "58",
"premiseName": null,
"box": "",
"entrance": null,
"floor": null,
"door": null,
"language": null,
"geocoderVersion": null
},
"isHeritage": "NO",
"hasProtections": "NO",
"parcelWidth": 7,
"parcelDepth": 15,
"buildingArea": 110,
"buildingHeight": 19.2,
"buildingDepth": 21,
"floodProneLocation": "NOT_A_FLOOD_PRONE_AREA",
"floodProneRisk": "NOT_A_FLOOD_PRONE_AREA",
"floodProneBuildingScore": "A",
"floodProneParcelScore": "A",
"generalDestination": null,
"generalUse": null,
"preemptionRight": "UNKNOWN",
"cadastralIncome": null,
"buildingCondition": "VERY_GOOD",
"spatialPlanning": "RESIDENTIAL",
"addressText": "Antwerpsesteenweg 58, 9000 Sint-Amandsberg, Gent",
"parcelLocation": null,
"distanceFromStreet": 0,
"numberOfStorageRooms": 0,
"renovationCondition": "RENOVATED",
"renovationInfo": "Volledige renovatie door architect Steels in 2010",
"numberOfLivingRooms": 2,
"numberOfDiningRooms": 1,
"numberOfKitchenRooms": 1,
"numberOfOfficeRooms": 1,
"numberOfCellarRooms": 1,
"declaredValue": null,
"estimateMemo": null
}
},
{
"id": 235769151,
"agencyId": null,
"address": {
"id": 4248166,
"type": "ADDRESS",
"countryIso": "BE",
"admin1": "Oost-Vlaanderen",
"admin2": "Gent",
"locality": "Gent",
"subLocality": "Sint-Amandsberg",
"district": "Dampoort",
"postalCode": "9000",
"street": "Antwerpsesteenweg",
"number": "62",
"box": null,
"text": null,
"longitude": 3.7434910454627515,
"latitude": 51.05843767982335,
"coordinatesAccuracy": null
},
"shapeId": 1310168,
"estateType": "APARTMENT",
"estateSecondaryType": null,
"detachment": "TERRACED",
"floor": 1,
"numberOfFloors": 3,
"habitableArea": 130,
"landArea": 401,
"constructedArea": null,
"terraceArea": 25,
"terraceOrientation": "SE",
"gardenArea": null,
"gardenOrientation": "SE",
"numberOfBedrooms": 3,
"numberOfBathrooms": 1,
"numberOfToilets": 1,
"numberOfOtherRooms": null,
"numberOfRooms": null,
"numberOfGarages": null,
"numberOfParkingSpaces": null,
"buildYear": 1995,
"renovationYear": null,
"energyConsumption": null,
"energyClassification": "C",
"facadeWidth": 17.1,
"flags": {
"HAS_ALARM_SECURITY": false,
"HAS_DOUBLE_GLASS": true,
"HAS_DRESSING": false,
"HAS_ELEVATOR": false,
"HAS_FIREPLACE": false,
"HAS_GARDEN": false,
"HAS_JACUZZI": false,
"HAS_SAUNA": false,
"HAS_SWIMMING_POOL": false,
"HAS_TERRACE": true
},
"ownEstimate": {
"saleEstimate": 335000,
"rentEstimate": null,
"explanation": null
},
"estimate": {
"saleEstimate": 311000,
"rentEstimate": 800,
"currency": "EUR",
"type": null,
"info": "SHOWN",
"confidence": 94
},
"parcelArea": null,
"parcelDepth": null,
"parcelWidth": null,
"buildingArea": 249,
"buildingDepth": 22,
"buildingHeight": 14.9,
"buildingDistanceFromStreet": null,
"spatialPlanning": "RESIDENTIAL",
"isFloodProneLocation": null,
"hasPreemptionRight": null,
"returnEstimate": null,
"enrich": null,
"allowUnmapped": null,
"minimalAddressLevel": "ADDRESS",
"customParameters": {
"address": {
"id": null,
"type": null,
"addressId": null,
"shapeId": null,
"text": null,
"coordinates": null,
"coordinatesAccuracy": null,
"countryIso": "BE",
"admin1": null,
"admin2": null,
"locality": "Sint-Amandsberg",
"subLocality": null,
"district": null,
"postalCode": "9000",
"street": "Antwerpsesteenweg",
"number": "62",
"premiseName": null,
"box": "",
"entrance": null,
"floor": null,
"door": null,
"language": null,
"geocoderVersion": null
},
"isHeritage": "NO",
"hasProtections": "NO",
"parcelWidth": null,
"parcelDepth": null,
"buildingArea": 249,
"buildingHeight": 14.9,
"buildingDepth": 22,
"floodProneLocation": "NOT_A_FLOOD_PRONE_AREA",
"floodProneRisk": "NOT_A_FLOOD_PRONE_AREA",
"floodProneBuildingScore": "A",
"floodProneParcelScore": "A",
"generalDestination": null,
"generalUse": null,
"preemptionRight": "UNKNOWN",
"cadastralIncome": null,
"buildingCondition": "GOOD",
"spatialPlanning": "RESIDENTIAL",
"addressText": "Antwerpsesteenweg 62, 9000 Sint-Amandsberg, Gent",
"parcelLocation": null,
"distanceFromStreet": 7,
"numberOfStorageRooms": 0,
"apartmentType": "SINGLE_FLOOR",
"numberOfLivingRooms": 1,
"numberOfDiningRooms": 1,
"numberOfKitchenRooms": 1,
"numberOfCellarRooms": 1,
"declaredValue": null,
"estimateMemo": null
}
}
]
This endpoint is responsible for the creation of new valuations.
Content-Type: application/json
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
{
"agencyId": null,
"address": {
"id": 3910562,
"countryIso": "BE",
"admin1": "Oost-Vlaanderen",
"admin2": "Aalst",
"locality": "Aalst",
"subLocality": "Aalst",
"district": "Duivekeet",
"postalCode": "9300",
"street": "Ingang De Prez",
"number": "1",
"box": null,
"text": null,
"longitude": 4.029059499633957,
"latitude": 50.93983176798426,
"coordinatesAccuracy": null
},
"shapeId": 4213410,
"estateType": "HOUSE",
"estateSecondaryType": null,
"detachment": "TERRACED",
"floor": null,
"numberOfFloors": 2,
"habitableArea": 180,
"landArea": 270,
"constructedArea": null,
"terraceArea": null,
"terraceOrientation": null,
"gardenArea": 153,
"gardenOrientation": "SW",
"numberOfBedrooms": 3,
"numberOfBathrooms": 2,
"numberOfToilets": 2,
"numberOfOtherRooms": null,
"numberOfRooms": 4,
"numberOfGarages": 1,
"numberOfParkingSpaces": null,
"buildYear": 1921,
"renovationYear": 2003,
"energyConsumption": null,
"energyClassification": "C",
"facadeWidth": 9,
"flags": {
"HAS_ALARM_SECURITY": false,
"HAS_ATTIC": false,
"HAS_BASEMENT": false,
"HAS_DOUBLE_GLASS": true,
"HAS_DRESSING": true,
"HAS_ELEVATOR": false,
"HAS_FIREPLACE": true,
"HAS_GARDEN": true,
"HAS_JACUZZI": false,
"HAS_SAUNA": false,
"HAS_SOLAR_PANELS": true,
"HAS_SWIMMING_POOL": false
},
"ownEstimate": {
"saleEstimate": 380000,
"rentEstimate": null,
"explanation": null
},
"parcelArea": null,
"parcelDepth": 29,
"parcelWidth": 9,
"buildingArea": 130,
"buildingDepth": 19,
"buildingHeight": 7.4,
"buildingDistanceFromStreet": null,
"spatialPlanning": "RESIDENTIAL",
"isFloodProneLocation": null,
"hasPreemptionRight": null,
"returnEstimate": null,
"enrich": null,
"allowUnmapped": null,
"minimalAddressLevel": "ADDRESS",
"customParameters": {
"address": {
"id": null,
"type": null,
"addressId": null,
"shapeId": null,
"text": null,
"coordinates": null,
"coordinatesAccuracy": null,
"countryIso": "BE",
"admin1": null,
"admin2": null,
"locality": "Aalst",
"subLocality": null,
"district": null,
"postalCode": "9300",
"street": "Ingang De Prez",
"number": "1",
"premiseName": null,
"box": "",
"entrance": null,
"floor": null,
"door": null,
"language": null,
"geocoderVersion": null
},
"isHeritage": "NO",
"hasProtections": "NO",
"parcelWidth": 9,
"parcelDepth": 29,
"buildingArea": 130,
"buildingHeight": 7.4,
"buildingDepth": 19,
"floodProneLocation": "POSSIBLE_FLOOD_PRONE_AREA",
"floodProneBuildingScore": "C",
"floodProneParcelScore": "C",
"generalDestination": null,
"generalUse": null,
"preemptionRight": "UNKNOWN",
"cadastralIncome": null,
"buildingCondition": "GOOD",
"spatialPlanning": "RESIDENTIAL",
"addressText": "Ingang De Prez 1, 9300 Aalst",
"parcelLocation": null,
"distanceFromStreet": 3.5,
"numberOfStorageRooms": 0,
"renovationCondition": "PARTIALLY_RENOVATED",
"numberOfLivingRooms": 1,
"numberOfDiningRooms": 1,
"numberOfKitchenRooms": 1,
"numberOfOfficeRooms": 1,
"declaredValue": null,
"estimateMemo": null
}
}
201
ShowHideContent-Type: application/json
{
"id": 1
}
402
ShowHideContent-Type: application/json
{
"errors": [
{
"message": "Limit of estimates has been exceeded",
"type": "API_Exception_PaymentRequiredException",
}
]
}
This endpoint is used to retrieve a single valuation.
number
(required) Example: 1ID of the valuation
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/json
{
"id": 807684380,
"agencyId": null,
"address": {
"id": 3910562,
"type": "ADDRESS",
"countryIso": "BE",
"admin1": "Oost-Vlaanderen",
"admin2": "Aalst",
"locality": "Aalst",
"subLocality": "Aalst",
"district": "Duivekeet",
"postalCode": "9300",
"street": "Ingang De Prez",
"number": "1",
"box": null,
"text": null,
"longitude": 4.029059499633957,
"latitude": 50.93983176798426,
"coordinatesAccuracy": null
},
"shapeId": 4213410,
"estateType": "HOUSE",
"estateSecondaryType": null,
"detachment": "TERRACED",
"floor": null,
"numberOfFloors": 2,
"habitableArea": 180,
"landArea": 270,
"constructedArea": null,
"terraceArea": null,
"terraceOrientation": null,
"gardenArea": 153,
"gardenOrientation": "SW",
"numberOfBedrooms": 3,
"numberOfBathrooms": 2,
"numberOfToilets": 2,
"numberOfOtherRooms": null,
"numberOfRooms": 4,
"numberOfGarages": 1,
"numberOfParkingSpaces": null,
"buildYear": 1921,
"renovationYear": 2003,
"energyConsumption": null,
"energyClassification": "C",
"facadeWidth": 9,
"flags": {
"HAS_ALARM_SECURITY": false,
"HAS_ATTIC": false,
"HAS_BASEMENT": false,
"HAS_DOUBLE_GLASS": true,
"HAS_DRESSING": true,
"HAS_ELEVATOR": false,
"HAS_FIREPLACE": true,
"HAS_GARDEN": true,
"HAS_JACUZZI": false,
"HAS_SAUNA": false,
"HAS_SOLAR_PANELS": true,
"HAS_SWIMMING_POOL": false
},
"ownEstimate": {
"saleEstimate": 380000,
"rentEstimate": null,
"explanation": null
},
"estimate": {
"saleEstimate": 396000,
"rentEstimate": 1040,
"currency": "EUR",
"type": null,
"info": "SHOWN",
"confidence": 64
},
"parcelArea": null,
"parcelDepth": 29,
"parcelWidth": 9,
"buildingArea": 130,
"buildingDepth": 19,
"buildingHeight": 7.4,
"buildingDistanceFromStreet": null,
"spatialPlanning": "RESIDENTIAL",
"isFloodProneLocation": null,
"hasPreemptionRight": null,
"returnEstimate": null,
"enrich": null,
"allowUnmapped": null,
"minimalAddressLevel": "ADDRESS",
"customParameters": {
"address": {
"id": null,
"type": null,
"addressId": null,
"shapeId": null,
"text": null,
"coordinates": null,
"coordinatesAccuracy": null,
"countryIso": "BE",
"admin1": null,
"admin2": null,
"locality": "Aalst",
"subLocality": null,
"district": null,
"postalCode": "9300",
"street": "Ingang De Prez",
"number": "1",
"premiseName": null,
"box": "",
"entrance": null,
"floor": null,
"door": null,
"language": null,
"geocoderVersion": null
},
"isHeritage": "NO",
"hasProtections": "NO",
"parcelWidth": 9,
"parcelDepth": 29,
"buildingArea": 130,
"buildingHeight": 7.4,
"buildingDepth": 19,
"floodProneLocation": "POSSIBLE_FLOOD_PRONE_AREA",
"floodProneBuildingScore": "C",
"floodProneParcelScore": "C",
"generalDestination": null,
"generalUse": null,
"preemptionRight": "UNKNOWN",
"cadastralIncome": null,
"buildingCondition": "GOOD",
"spatialPlanning": "RESIDENTIAL",
"addressText": "Ingang De Prez 1, 9300 Aalst",
"parcelLocation": null,
"distanceFromStreet": 3.5,
"numberOfStorageRooms": 0,
"renovationCondition": "PARTIALLY_RENOVATED",
"numberOfLivingRooms": 1,
"numberOfDiningRooms": 1,
"numberOfKitchenRooms": 1,
"numberOfOfficeRooms": 1,
"declaredValue": null,
"estimateMemo": null
}
}
404
ShowHideContent-Type: application/json
{
"errors": [
{
"message": "Resource not found",
"type": "API_Exception_NotFoundException",
}
]
}
This endpoint is used to update valuations and supports both partial and full update requests.
number
(required) Example: 1ID of the valuation
Content-Type: application/json
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
{
"agencyId": null,
"address": {
"id": 3910562,
"countryIso": "BE",
"admin1": "Oost-Vlaanderen",
"admin2": "Aalst",
"locality": "Aalst",
"subLocality": "Aalst",
"district": "Duivekeet",
"postalCode": "9300",
"street": "Ingang De Prez",
"number": "1",
"box": null,
"text": null,
"longitude": 4.029059499633957,
"latitude": 50.93983176798426,
"coordinatesAccuracy": null
},
"shapeId": 4213410,
"estateType": "HOUSE",
"estateSecondaryType": null,
"detachment": "TERRACED",
"floor": null,
"numberOfFloors": 2,
"habitableArea": 180,
"landArea": 270,
"constructedArea": null,
"terraceArea": null,
"terraceOrientation": null,
"gardenArea": 153,
"gardenOrientation": "SW",
"numberOfBedrooms": 3,
"numberOfBathrooms": 2,
"numberOfToilets": 2,
"numberOfOtherRooms": null,
"numberOfRooms": 4,
"numberOfGarages": 1,
"numberOfParkingSpaces": null,
"buildYear": 1921,
"renovationYear": 2003,
"energyConsumption": null,
"energyClassification": "C",
"facadeWidth": 9,
"flags": {
"HAS_ALARM_SECURITY": false,
"HAS_ATTIC": false,
"HAS_BASEMENT": false,
"HAS_DOUBLE_GLASS": true,
"HAS_DRESSING": true,
"HAS_ELEVATOR": false,
"HAS_FIREPLACE": true,
"HAS_GARDEN": true,
"HAS_JACUZZI": false,
"HAS_SAUNA": false,
"HAS_SOLAR_PANELS": true,
"HAS_SWIMMING_POOL": false
},
"ownEstimate": {
"saleEstimate": 380000,
"rentEstimate": null,
"explanation": null
},
"parcelArea": null,
"parcelDepth": 29,
"parcelWidth": 9,
"buildingArea": 130,
"buildingDepth": 19,
"buildingHeight": 7.4,
"buildingDistanceFromStreet": null,
"spatialPlanning": "RESIDENTIAL",
"isFloodProneLocation": null,
"hasPreemptionRight": null,
"returnEstimate": null,
"enrich": null,
"allowUnmapped": null,
"minimalAddressLevel": "ADDRESS",
"customParameters": {
"address": {
"id": null,
"type": null,
"addressId": null,
"shapeId": null,
"text": null,
"coordinates": null,
"coordinatesAccuracy": null,
"countryIso": "BE",
"admin1": null,
"admin2": null,
"locality": "Aalst",
"subLocality": null,
"district": null,
"postalCode": "9300",
"street": "Ingang De Prez",
"number": "1",
"premiseName": null,
"box": "",
"entrance": null,
"floor": null,
"door": null,
"language": null,
"geocoderVersion": null
},
"isHeritage": "NO",
"hasProtections": "NO",
"parcelWidth": 9,
"parcelDepth": 29,
"buildingArea": 130,
"buildingHeight": 7.4,
"buildingDepth": 19,
"floodProneLocation": "POSSIBLE_FLOOD_PRONE_AREA",
"floodProneBuildingScore": "C",
"floodProneParcelScore": "C",
"generalDestination": null,
"generalUse": null,
"preemptionRight": "UNKNOWN",
"cadastralIncome": null,
"buildingCondition": "GOOD",
"spatialPlanning": "RESIDENTIAL",
"addressText": "Ingang De Prez 1, 9300 Aalst",
"parcelLocation": null,
"distanceFromStreet": 3.5,
"numberOfStorageRooms": 0,
"renovationCondition": "PARTIALLY_RENOVATED",
"numberOfLivingRooms": 1,
"numberOfDiningRooms": 1,
"numberOfKitchenRooms": 1,
"numberOfOfficeRooms": 1,
"declaredValue": null,
"estimateMemo": null
}
}
200
ShowHideContent-Type: application/json
{
"success": true
}
404
ShowHideContent-Type: application/json
{
"errors": [
{
"message": "Resource not found",
"type": "API_Exception_NotFoundException",
}
]
}
Add a picture to the estimate report.
number
(required) Example: 1ID of the valuation
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
{
"url": "https://realocdn.com/image/1/BE-master_listing_b38506_b38506ef15174f7d2ddfbe16c61e1318.jpg/1728x1080/1920x1080/2/f76e",
"order": 0
}
200
ShowHideContent-Type: application/json
{
"data": {
"id": 23895218
}
}
This endpoint is used to download an estimate report for the given valuation and language.
number
(required) Example: 1ID of the valuation
string
(required) Example: ENLanguage of the report
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/pdf
404
ShowHideContent-Type: application/json
{
"errors": [
{
"message": "Resource not found",
"type": "API_Exception_NotFoundException",
}
]
}
modules
(list[enum[EstimateReport_Block]])
List of modules to include in the estimate report.
similarTransactions
(list[integer], optional)
List of similar transactions to include in the estimate report.
customization
(object[ReportCustomization], optional)
The customization of the report.
logoUrl
(string, optional)
The logo to use.
primaryColor
(string, optional)
The primary color of the report.
highlightColor
(string, optional)
The highlight (accent) color of the report.
This endpoint is used to download a custom report for the given valuation and language.
number
(required) Example: 1ID of the valuation
string
(required) Example: ENLanguage of the report
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
{
"modules": [
"INTRODUCTION_ESTIMATE_RANGE",
"PROPERTY_FEATURES_GENERAL",
"PRICE_HISTORY",
"MARKET_INSIGHTS_AVERAGE_PRICE",
"MARKET_INSIGHTS_PRICE_EVOLUTION",
"MOBILITY_SCORE_GENERAL",
"MOBILITY_SCORE_PUBLIC_TRANSPORT",
"MOBILITY_SCORE_NEARBY_CITIES",
"MOBILITY_SCORE_SCHOOLS",
"MOBILITY_SCORE_AMENITIES",
"TRANSACTIONS_BASIC_SALE",
"TRANSACTIONS_BASIC_RENT"
],
"similarTransactions": null,
"customization": null
}
200
ShowHideContent-Type: application/pdf
404
ShowHideContent-Type: application/json
{
"errors": [
{
"message": "Resource not found",
"type": "API_Exception_NotFoundException",
}
]
}
This endpoint is used to retrieve the market insights data for the given valuation.
onlineForSaleListings
(map[enum[ListingType], integer], optional)
Map of {type => number of online listings for sale} entries.
onlineForRentListings
(map[enum[ListingType], integer], optional)
Map of {type => number of online listings for rent} entries.
onlineListingsAccuracy
(enum[AddressType], optional)
Address accuracy of online listings.
offlineForSaleListings
(map[enum[ListingType], integer], optional)
Map of {type => number of offline listings for sale} entries.
offlineForRentListings
(map[enum[ListingType], integer], optional)
Map of {type => number of offline listings for rent} entries.
offlineListingsAccuracy
(enum[AddressType], optional)
Address accuracy of offline listings.
listingsForSaleOverTime
(map[string, integer], optional)
Map of {month => number of listings for sale} entries.
listingsForRentOverTime
(map[string, integer], optional)
Map of {month => number of listings for rent} entries.
listingsOverTimeAccuracy
(enum[AddressType], optional)
Address accuracy of listings over time.
timeOnMarketOverTimeForSale
(map[string, number], optional)
Map of {month => median time online (in days) of listings for sale} entries.
timeOnMarketOverTimeForSaleAccuracy
(enum[AddressType], optional)
Address accuracy of time on market over time for sale.
timeOnMarketOverTimeForRent
(map[string, number], optional)
Map of {month => median time online (in days) of listings for rent} entries.
timeOnMarketOverTimeForRentAccuracy
(enum[AddressType], optional)
Address accuracy of time on market over time for rent.
salePricePerSquareMeter
(map[integer, number], optional)
Map of {percentile => listing sale price per square meter} entries.
Available percentiles are: [0.25, 0.50, 0.75].
rentPricePerSquareMeter
(map[integer, number], optional)
Map of {percentile => listing rent price per square meter} entries.
Available percentiles are: [0.25, 0.50, 0.75].
pricePerSquareMeterAccuracy
(enum[AddressType], optional)
Address accuracy of price per square meter.
saleDemand
(number, optional)
Number of listings sold (in the past 6 months) divided by number of listings for sale (in the past 6 months), expressed in percentage.
rentalDemand
(number, optional)
Number of listings rented (in the past 6 months) divided by number of listings for rent (in the past 6 months), expressed in percentage.
demandAccuracy
(enum[AddressType], optional)
Address accuracy of sale/rental demand.
estimateSimulatedOverTime
(map[string, number], optional)
Map of {date => simulated sale estimate} entries.
priceEvolutionOnDistrict
(map[string, number], optional)
Map of {date => median district listing sale price} entries.
priceEvolutionOnSubLocality
(map[string, number], optional)
Map of {date => median sublocality listing sale price} entries.
priceEvolutionOnLocality
(map[string, number], optional)
Map of {date => median locality listing sale price} entries.
priceEvolutionOnAdmin2
(map[string, number], optional)
Map of {date => median admin2 listing sale price} entries.
priceEvolutionOnAdmin1
(map[string, number], optional)
Map of {date => median admin1 listing sale price} entries.
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
{
"estateType": "HOUSE"
}
200
ShowHideContent-Type: application/json
{
"onlineForSaleListings": {
"HOUSE": 1440,
"APARTMENT": 2023
},
"onlineForRentListings": {
"HOUSE": 26,
"APARTMENT": 326
},
"onlineListingsAccuracy": "LOCALITY",
"offlineForSaleListings": {
"HOUSE": 33203,
"APARTMENT": 22288
},
"offlineForRentListings": {
"HOUSE": 3682,
"APARTMENT": 15637
},
"offlineListingsAccuracy": "LOCALITY",
"listingsForSaleOverTime": {
"0000-00-00": 9532,
"2011-10-01": 1,
"2012-02-01": 1,
"2012-04-01": 1,
"2012-07-01": 1,
"2012-09-01": 4,
"2012-10-01": 3,
"2012-11-01": 4,
"2012-12-01": 2,
"2013-01-01": 1,
"2013-02-01": 1,
"2013-03-01": 7,
"2013-04-01": 7,
"2013-05-01": 5,
"2013-06-01": 6,
"2013-07-01": 5,
"2013-08-01": 18,
"2013-09-01": 220,
"2013-10-01": 64,
"2013-11-01": 77,
"2013-12-01": 59,
"2014-01-01": 91,
"2014-02-01": 48,
"2014-03-01": 98,
"2014-04-01": 86,
"2014-05-01": 73,
"2014-06-01": 69,
"2014-07-01": 77,
"2014-08-01": 97,
"2014-09-01": 96,
"2014-10-01": 105,
"2014-11-01": 73,
"2014-12-01": 75,
"2015-01-01": 85,
"2015-02-01": 72,
"2015-03-01": 164,
"2015-04-01": 118,
"2015-05-01": 106,
"2015-06-01": 101,
"2015-07-01": 87,
"2015-08-01": 57,
"2015-09-01": 119,
"2015-10-01": 93,
"2015-11-01": 65,
"2015-12-01": 49,
"2016-01-01": 96,
"2016-02-01": 69,
"2016-03-01": 85,
"2016-04-01": 84,
"2016-05-01": 105,
"2016-06-01": 91,
"2016-07-01": 82,
"2016-08-01": 85,
"2016-09-01": 76,
"2016-10-01": 105,
"2016-11-01": 140,
"2016-12-01": 80,
"2017-01-01": 92,
"2017-02-01": 174,
"2017-03-01": 256,
"2017-04-01": 153,
"2017-05-01": 118,
"2017-06-01": 158,
"2017-07-01": 66,
"2017-08-01": 75,
"2017-09-01": 75,
"2017-10-01": 127,
"2017-11-01": 105,
"2017-12-01": 82,
"2018-01-01": 48,
"2018-02-01": 61,
"2018-03-01": 80,
"2018-04-01": 102,
"2018-05-01": 82,
"2018-06-01": 99,
"2018-07-01": 73,
"2018-08-01": 73,
"2018-09-01": 98,
"2018-10-01": 101,
"2018-11-01": 89,
"2018-12-01": 56,
"2019-01-01": 92,
"2019-02-01": 67,
"2019-03-01": 77,
"2019-04-01": 122,
"2019-05-01": 105,
"2019-06-01": 116,
"2019-07-01": 73,
"2019-08-01": 108,
"2019-09-01": 150,
"2019-10-01": 279,
"2019-11-01": 127,
"2019-12-01": 91,
"2020-01-01": 100,
"2020-02-01": 129,
"2020-03-01": 72,
"2020-04-01": 23,
"2020-05-01": 132,
"2020-06-01": 149,
"2020-07-01": 120,
"2020-08-01": 157,
"2020-09-01": 124,
"2020-10-01": 139,
"2020-11-01": 73,
"2020-12-01": 105,
"2021-01-01": 173,
"2021-02-01": 104,
"2021-03-01": 71,
"2021-04-01": 85,
"2021-05-01": 108,
"2021-06-01": 90,
"2021-07-01": 90,
"2021-08-01": 111,
"2021-09-01": 130,
"2021-10-01": 87,
"2021-11-01": 72,
"2021-12-01": 58,
"2022-01-01": 102,
"2022-02-01": 129,
"2022-03-01": 122,
"2022-04-01": 136,
"2022-05-01": 148,
"2022-06-01": 139,
"2022-07-01": 94,
"2022-08-01": 158,
"2022-09-01": 175,
"2022-10-01": 248,
"2022-11-01": 220,
"2022-12-01": 133,
"2023-01-01": 207,
"2023-02-01": 174,
"2023-03-01": 195,
"2023-04-01": 170,
"2023-05-01": 216,
"2023-06-01": 292,
"2023-07-01": 221,
"2023-08-01": 316,
"2023-09-01": 326,
"2023-10-01": 493,
"2023-11-01": 375,
"2023-12-01": 481,
"2024-01-01": 405,
"2024-02-01": 251,
"2024-03-01": 396,
"2024-04-01": 424,
"2024-05-01": 425,
"2024-06-01": 391,
"2024-07-01": 312,
"2024-08-01": 379,
"2024-09-01": 437,
"2024-10-01": 380,
"2024-11-01": 395,
"2024-12-01": 273,
"2025-01-01": 108
},
"listingsForRentOverTime": {
"0000-00-00": 1399,
"2013-03-01": 1,
"2013-06-01": 5,
"2013-07-01": 4,
"2013-08-01": 2,
"2013-09-01": 24,
"2013-10-01": 24,
"2013-11-01": 9,
"2013-12-01": 14,
"2014-01-01": 10,
"2014-02-01": 15,
"2014-03-01": 18,
"2014-04-01": 14,
"2014-05-01": 15,
"2014-06-01": 15,
"2014-07-01": 9,
"2014-08-01": 17,
"2014-09-01": 16,
"2014-10-01": 19,
"2014-11-01": 12,
"2014-12-01": 16,
"2015-01-01": 18,
"2015-02-01": 11,
"2015-03-01": 11,
"2015-04-01": 26,
"2015-05-01": 10,
"2015-06-01": 22,
"2015-07-01": 17,
"2015-08-01": 26,
"2015-09-01": 15,
"2015-10-01": 22,
"2015-11-01": 21,
"2015-12-01": 14,
"2016-01-01": 18,
"2016-02-01": 7,
"2016-03-01": 2,
"2016-04-01": 13,
"2016-05-01": 26,
"2016-06-01": 17,
"2016-07-01": 15,
"2016-08-01": 20,
"2016-09-01": 22,
"2016-10-01": 39,
"2016-11-01": 26,
"2016-12-01": 20,
"2017-01-01": 26,
"2017-02-01": 30,
"2017-03-01": 39,
"2017-04-01": 35,
"2017-05-01": 10,
"2017-06-01": 21,
"2017-07-01": 7,
"2017-08-01": 6,
"2017-09-01": 11,
"2017-10-01": 6,
"2017-11-01": 5,
"2017-12-01": 17,
"2018-01-01": 13,
"2018-02-01": 7,
"2018-03-01": 4,
"2018-04-01": 16,
"2018-05-01": 15,
"2018-06-01": 14,
"2018-07-01": 7,
"2018-08-01": 13,
"2018-09-01": 12,
"2018-10-01": 23,
"2018-11-01": 20,
"2018-12-01": 12,
"2019-01-01": 19,
"2019-02-01": 16,
"2019-03-01": 11,
"2019-04-01": 15,
"2019-05-01": 16,
"2019-06-01": 9,
"2019-07-01": 13,
"2019-08-01": 21,
"2019-09-01": 20,
"2019-10-01": 19,
"2019-11-01": 15,
"2019-12-01": 12,
"2020-01-01": 17,
"2020-02-01": 15,
"2020-03-01": 12,
"2020-04-01": 10,
"2020-05-01": 24,
"2020-06-01": 17,
"2020-07-01": 17,
"2020-08-01": 11,
"2020-09-01": 32,
"2020-10-01": 14,
"2020-11-01": 10,
"2020-12-01": 19,
"2021-01-01": 30,
"2021-02-01": 6,
"2021-03-01": 6,
"2021-04-01": 11,
"2021-05-01": 4,
"2021-06-01": 11,
"2021-07-01": 10,
"2021-08-01": 8,
"2021-09-01": 28,
"2021-10-01": 12,
"2021-11-01": 4,
"2021-12-01": 12,
"2022-01-01": 25,
"2022-02-01": 24,
"2022-03-01": 18,
"2022-04-01": 31,
"2022-05-01": 22,
"2022-06-01": 17,
"2022-07-01": 17,
"2022-08-01": 6,
"2022-09-01": 19,
"2022-10-01": 29,
"2022-11-01": 26,
"2022-12-01": 28,
"2023-01-01": 27,
"2023-02-01": 17,
"2023-03-01": 38,
"2023-04-01": 7,
"2023-05-01": 22,
"2023-06-01": 15,
"2023-07-01": 12,
"2023-08-01": 30,
"2023-09-01": 14,
"2023-10-01": 30,
"2023-11-01": 45,
"2023-12-01": 29,
"2024-01-01": 32,
"2024-02-01": 17,
"2024-03-01": 25,
"2024-04-01": 29,
"2024-05-01": 11,
"2024-06-01": 49,
"2024-07-01": 30,
"2024-08-01": 17,
"2024-09-01": 47,
"2024-10-01": 79,
"2024-11-01": 28,
"2024-12-01": 12,
"2025-01-01": 8
},
"listingsOverTimeAccuracy": "SUBLOCALITY",
"timeOnMarketOverTimeForSale": {
"2013-09-01": 241.01063829787233,
"2013-10-01": 108.64315352697095,
"2013-11-01": 87.58953168044077,
"2013-12-01": 85.8225806451613,
"2014-01-01": 87.6625,
"2014-02-01": 89.04358655043586,
"2014-03-01": 88.34057971014492,
"2014-04-01": 86.56470588235294,
"2014-05-01": 84.70783847980998,
"2014-06-01": 85.56291390728477,
"2014-07-01": 85.19066147859922,
"2014-08-01": 83.41870160810006,
"2014-09-01": 80.56164383561644,
"2014-10-01": 80.2549504950495,
"2014-11-01": 85.4225352112676,
"2014-12-01": 88.26487523992323,
"2015-01-01": 87.53461538461538,
"2015-02-01": 86.52873008208594,
"2015-03-01": 83.4948954788527,
"2015-04-01": 81.12705314009662,
"2015-05-01": 82.56267539756782,
"2015-06-01": 82.16552354823959,
"2015-07-01": 79.79603782080144,
"2015-08-01": 79.7621448212649,
"2015-09-01": 81.05726065048098,
"2015-10-01": 89.90004308487721,
"2015-11-01": 89.29032258064517,
"2015-12-01": 87.91022674687645,
"2016-01-01": 87.29962370649106,
"2016-02-01": 87.5774647887324,
"2016-03-01": 85.95551436515292,
"2016-04-01": 87.22379603399433,
"2016-05-01": 87.53492822966507,
"2016-06-01": 84.27099044746103,
"2016-07-01": 84.37062937062937,
"2016-08-01": 84.54396504642271,
"2016-09-01": 82.82248191430162,
"2016-10-01": 80.51923076923077,
"2016-11-01": 65.35908018867924,
"2016-12-01": 69.46113689095128,
"2017-01-01": 73.80215633423181,
"2017-02-01": 69.72731906218145,
"2017-03-01": 67.48975512243878,
"2017-04-01": 68.56588761810045,
"2017-05-01": 67.10735418427726,
"2017-06-01": 65.80634528224145,
"2017-07-01": 65.00520208083233,
"2017-08-01": 65.78769841269842,
"2017-09-01": 66.59382422802851,
"2017-10-01": 74.53517964071857,
"2017-11-01": 73.27155963302752,
"2017-12-01": 74.71665438467207,
"2018-01-01": 74.12060491493384,
"2018-02-01": 71.67662709783053,
"2018-03-01": 75.86140350877193,
"2018-04-01": 89.35573122529644,
"2018-05-01": 89.82044088176353,
"2018-06-01": 94.0648401826484,
"2018-07-01": 96.27011494252874,
"2018-08-01": 99.21186856302108,
"2018-09-01": 98.67938194109126,
"2018-10-01": 98.90220517737296,
"2018-11-01": 90.9764411027569,
"2018-12-01": 99.33431806991629,
"2019-01-01": 104.18137254901961,
"2019-02-01": 103.93951032165147,
"2019-03-01": 101.1608832807571,
"2019-04-01": 98.01988759187203,
"2019-05-01": 84.53249879634087,
"2019-06-01": 84.47655139744197,
"2019-07-01": 84.42715559960357,
"2019-08-01": 84.73860465116279,
"2019-09-01": 83.53647276084949,
"2019-10-01": 77.84466419447878,
"2019-11-01": 74.37958532695374,
"2019-12-01": 72.2707205331112,
"2020-01-01": 68.9634399667636,
"2020-02-01": 67.39077568134172,
"2020-03-01": 65.7911597729116,
"2020-04-01": 66.63105175292154,
"2020-05-01": 70.09515996718622,
"2020-06-01": 74.64592533119229,
"2020-07-01": 73.26442687747036,
"2020-08-01": 72.89881393624907,
"2020-09-01": 71.73792316470141,
"2020-10-01": 72.41830065359477,
"2020-11-01": 76.59692432213679,
"2020-12-01": 82.47032337290217,
"2021-01-01": 81.74578177727784,
"2021-02-01": 76.47972972972973,
"2021-03-01": 73.11257253384913,
"2021-04-01": 73.44573643410853,
"2021-05-01": 71.18436182445382,
"2021-06-01": 67.69530046224962,
"2021-07-01": 63.31315156375301,
"2021-08-01": 62.89630858564911,
"2021-09-01": 62.36200417536534,
"2021-10-01": 61.93718381112985,
"2021-11-01": 61.19964742177171,
"2021-12-01": 59.65230905861456,
"2022-01-01": 56.5667251975417,
"2022-02-01": 54.446218882104276,
"2022-03-01": 56.319451249387555,
"2022-04-01": 57.344509232264336,
"2022-05-01": 54.686993806574556,
"2022-06-01": 54.99053627760252,
"2022-07-01": 53.895609318996414,
"2022-08-01": 55.41605206073753,
"2022-09-01": 55.61643835616438,
"2022-10-01": 54.35993349958437,
"2022-11-01": 54.11493288590604,
"2022-12-01": 53.67109760729206,
"2023-01-01": 54.68241099753261,
"2023-02-01": 54.10780287474333,
"2023-03-01": 55.59585987261146,
"2023-04-01": 55.83465566486829,
"2023-05-01": 56.74232946082812,
"2023-06-01": 58.11316872427984,
"2023-07-01": 58.69735744089012,
"2023-08-01": 58.9963889605365,
"2023-09-01": 58.32804103566195,
"2023-10-01": 56.16899844548079,
"2023-11-01": 56.27354166666667,
"2023-12-01": 54.27123442808607,
"2024-01-01": 53.35950340968701,
"2024-02-01": 51.98148148148148,
"2024-03-01": 50.910573042776434,
"2024-04-01": 48.514934471197805,
"2024-05-01": 47.768925994056886,
"2024-06-01": 46.62666844634276,
"2024-07-01": 45.72089274643521,
"2024-08-01": 45.059028194361126,
"2024-09-01": 44.095331866095215,
"2024-10-01": 42.599463267359944,
"2024-11-01": 42.27801747980971,
"2024-12-01": 41.20561364887177,
"2025-01-01": 42.06049862763037,
"2025-02-01": null
},
"timeOnMarketOverTimeForSaleAccuracy": "LOCALITY",
"timeOnMarketOverTimeForRent": {
"2013-11-01": 51.50961538461539,
"2013-12-01": 52.82113821138211,
"2014-01-01": 50.513888888888886,
"2014-02-01": 47.39393939393939,
"2014-03-01": 46.066326530612244,
"2014-04-01": 44.71495327102804,
"2014-05-01": 44.46186440677966,
"2014-06-01": 43.77685950413223,
"2014-07-01": 42.121863799283155,
"2014-08-01": 38.773770491803276,
"2014-09-01": 37.668711656441715,
"2014-10-01": 37.291291291291294,
"2014-11-01": 38.35493827160494,
"2014-12-01": 39.23006134969325,
"2015-01-01": 38.01219512195122,
"2015-02-01": 39.666666666666664,
"2015-03-01": 40.474474474474476,
"2015-04-01": 40.723076923076924,
"2015-05-01": 41.23511904761905,
"2015-06-01": 40.51420454545455,
"2015-07-01": 41.21052631578947,
"2015-08-01": 39.64225352112676,
"2015-09-01": 38.73728813559322,
"2015-10-01": 46.517520215633425,
"2015-11-01": 46.337078651685395,
"2015-12-01": 46.347457627118644,
"2016-01-01": 45.69602272727273,
"2016-02-01": 45.38461538461539,
"2016-03-01": 45.16076294277929,
"2016-04-01": 46.0252808988764,
"2016-05-01": 45.08516483516483,
"2016-06-01": 44.26315789473684,
"2016-07-01": 44.53389830508475,
"2016-08-01": 43.61772853185595,
"2016-09-01": 44.345609065155806,
"2016-10-01": 45.06936416184971,
"2016-11-01": 35.87116564417178,
"2016-12-01": 37.13411078717201,
"2017-01-01": 40.707042253521124,
"2017-02-01": 40.60928961748634,
"2017-03-01": 39.652054794520545,
"2017-04-01": 44.31951219512195,
"2017-05-01": 46.14502164502164,
"2017-06-01": 48.166666666666664,
"2017-07-01": 48.80168776371308,
"2017-08-01": 49.362637362637365,
"2017-09-01": 49.220489977728285,
"2017-10-01": 53.34988713318285,
"2017-11-01": 53.37070938215103,
"2017-12-01": 54.013698630136986,
"2018-01-01": 55.43170731707317,
"2018-02-01": 54.09234828496042,
"2018-03-01": 56.82436260623229,
"2018-04-01": 68.64829396325459,
"2018-05-01": 65.93655589123867,
"2018-06-01": 66.0530035335689,
"2018-07-01": 66.80952380952381,
"2018-08-01": 67.47368421052632,
"2018-09-01": 66.2375478927203,
"2018-10-01": 67.91221374045801,
"2018-11-01": 60.677536231884055,
"2018-12-01": 61.36769759450172,
"2019-01-01": 62.08965517241379,
"2019-02-01": 59.976190476190474,
"2019-03-01": 59.09415584415584,
"2019-04-01": 56.48765432098765,
"2019-05-01": 40.1554054054054,
"2019-06-01": 39.7037037037037,
"2019-07-01": 40.36491228070175,
"2019-08-01": 39.52188552188552,
"2019-09-01": 38.67948717948718,
"2019-10-01": 37.60606060606061,
"2019-11-01": 36.680597014925375,
"2019-12-01": 37.990196078431374,
"2020-01-01": 40.54754098360656,
"2020-02-01": 41.664406779661014,
"2020-03-01": 42.666666666666664,
"2020-04-01": 43.42068965517242,
"2020-05-01": 46.83,
"2020-06-01": 49.37282229965157,
"2020-07-01": 50.179310344827584,
"2020-08-01": 48.244372990353696,
"2020-09-01": 47.82876712328767,
"2020-10-01": 50.42253521126761,
"2020-11-01": 53,
"2020-12-01": 56.153225806451616,
"2021-01-01": 51.68199233716475,
"2021-02-01": 47.444,
"2021-03-01": 47.58606557377049,
"2021-04-01": 50.09504132231405,
"2021-05-01": 49.12916666666667,
"2021-06-01": 45.15584415584416,
"2021-07-01": 44.16883116883117,
"2021-08-01": 42.06521739130435,
"2021-09-01": 40.44090909090909,
"2021-10-01": 41.71296296296296,
"2021-11-01": 41.39423076923077,
"2021-12-01": 40.44748858447488,
"2022-01-01": 36.360189573459714,
"2022-02-01": 36.375,
"2022-03-01": 35.96052631578947,
"2022-04-01": 35.03879310344828,
"2022-05-01": 31.468503937007874,
"2022-06-01": 31.693661971830984,
"2022-07-01": 31.206293706293707,
"2022-08-01": 32.498245614035085,
"2022-09-01": 32.99270072992701,
"2022-10-01": 33.93006993006993,
"2022-11-01": 34.25259515570934,
"2022-12-01": 33.49266862170088,
"2023-01-01": 34.08683473389356,
"2023-02-01": 33.825484764542935,
"2023-03-01": 35.20765027322405,
"2023-04-01": 35.16201117318436,
"2023-05-01": 34.96457765667575,
"2023-06-01": 36.675,
"2023-07-01": 36.49441340782123,
"2023-08-01": 37.74722222222222,
"2023-09-01": 36.05804749340369,
"2023-10-01": 34.038369304556355,
"2023-11-01": 34.02870813397129,
"2023-12-01": 32.413566739606125,
"2024-01-01": 32.30022573363431,
"2024-02-01": 32.39821029082774,
"2024-03-01": 32.04761904761905,
"2024-04-01": 30.758985200845665,
"2024-05-01": 29.344969199178646,
"2024-06-01": 27.61598440545809,
"2024-07-01": 25.519083969465647,
"2024-08-01": 24.842105263157894,
"2024-09-01": 23.638376383763838,
"2024-10-01": 23.47487001733102,
"2024-11-01": 24.228915662650603,
"2024-12-01": 23.82630691399663,
"2025-01-01": 24.209764918625677,
"2025-02-01": null
},
"timeOnMarketOverTimeForRentAccuracy": "LOCALITY",
"salePricePerSquareMeter": {
"25": 162000,
"50": 215000,
"75": 237500
},
"rentPricePerSquareMeter": {
"25": 757.5,
"50": 825,
"75": 904.63
},
"pricePerSquareMeterAccuracy": "DISTRICT",
"saleDemand": 35.71,
"rentalDemand": 46.15,
"demandAccuracy": "DISTRICT",
"estimateSimulatedOverTime": {
"1981-01-01": 31421.091280277884,
"1981-04-01": 31649.49769026054,
"1981-07-01": 33685.562956674796,
"1981-10-01": 34491.94585783253,
"1982-01-01": 36732.18479998749,
"1982-04-01": 39486.46706212599,
"1982-07-01": 39787.05608474424,
"1982-10-01": 39614.848994599306,
"1983-01-01": 40996.630436480846,
"1983-04-01": 42101.539999895824,
"1983-07-01": 44330.43596006518,
"1983-10-01": 50232.395723206224,
"1984-01-01": 53417.19571070706,
"1984-04-01": 56540.124887377395,
"1984-07-01": 58177.63901402507,
"1984-10-01": 57799.19588777842,
"1985-01-01": 60649.37790670423,
"1985-04-01": 61822.860952123025,
"1985-07-01": 67490.22722419834,
"1985-10-01": 69219.51638691129,
"1986-01-01": 70403.82682422543,
"1986-04-01": 72917.84410430543,
"1986-07-01": 71490.69073448151,
"1986-10-01": 73305.05226208642,
"1987-01-01": 72733.2628519944,
"1987-04-01": 71290.12618937259,
"1987-07-01": 72354.30413565747,
"1987-10-01": 72171.2696536172,
"1988-01-01": 72146.00573919473,
"1988-04-01": 72219.21953201084,
"1988-07-01": 70296.0684953623,
"1988-10-01": 70457.4481936119,
"1989-01-01": 69232.92172925791,
"1989-04-01": 67216.96447636359,
"1989-07-01": 65666.5850749689,
"1989-10-01": 62334.84191174557,
"1990-01-01": 62877.24268669309,
"1990-04-01": 64121.87716456699,
"1990-07-01": 69170.53532833714,
"1990-10-01": 72742.02788352872,
"1991-01-01": 71558.23303630482,
"1991-04-01": 70531.6931666085,
"1991-07-01": 65368.05841271163,
"1991-10-01": 63414.487560738075,
"1992-01-01": 63100.4931957732,
"1992-04-01": 62049.20500174466,
"1992-07-01": 63716.62335362709,
"1992-10-01": 62619.96323165618,
"1993-01-01": 63414.48756073807,
"1993-04-01": 64042.47629066781,
"1993-07-01": 61813.580330498444,
"1993-10-01": 65436.116304625204,
"1994-01-01": 66677.65724195757,
"1994-04-01": 68772.49977866081,
"1994-07-01": 70225.43265299745,
"1994-10-01": 69454.62546806726,
"1995-01-01": 70458.47937379239,
"1995-04-01": 72615.19272132615,
"1995-07-01": 74612.58873097133,
"1995-10-01": 74716.73792920269,
"1996-01-01": 75216.34472665912,
"1996-04-01": 77656.63262383275,
"1996-07-01": 80873.39919692936,
"1996-10-01": 84214.42298177726,
"1997-01-01": 86968.70524391576,
"1997-04-01": 88569.61247415538,
"1997-07-01": 86718.64405014241,
"1997-10-01": 86463.94254555678,
"1998-01-01": 86499.51826178432,
"1998-04-01": 84751.15226573196,
"1998-07-01": 88064.84977579638,
"1998-10-01": 90944.93601995692,
"1999-01-01": 92515.93902496179,
"1999-04-01": 95677.02186831096,
"1999-07-01": 99401.1290902178,
"1999-10-01": 102486.93578038982,
"2000-01-01": 105504.16898855803,
"2000-04-01": 106622.48389431962,
"2000-07-01": 109952.16469718193,
"2000-10-01": 110828.66785061425,
"2001-01-01": 113224.09940993576,
"2001-04-01": 113541.18731544215,
"2001-07-01": 112723.97702238908,
"2001-10-01": 118549.62945217248,
"2002-01-01": 121764.33366490806,
"2002-04-01": 124667.62146313004,
"2002-07-01": 125251.78503538817,
"2002-10-01": 123503.41903933581,
"2003-01-01": 123396.69189065316,
"2003-04-01": 125052.25167045975,
"2003-07-01": 126892.39270257734,
"2003-10-01": 128237.56724805084,
"2004-01-01": 128362.85563998263,
"2004-04-01": 128362.85563998262,
"2004-07-01": 129453.3286808705,
"2004-10-01": 128943.41008160898,
"2005-01-01": 129182.64388348698,
"2005-04-01": 129919.42212246038,
"2005-07-01": 129772.99453682815,
"2005-10-01": 133052.6631009358,
"2006-01-01": 136950.52418325836,
"2006-04-01": 143297.43819428884,
"2006-07-01": 147848.03633087335,
"2006-10-01": 148584.29897975648,
"2007-01-01": 151809.8305843874,
"2007-04-01": 151879.95083666203,
"2007-07-01": 151541.7237374552,
"2007-10-01": 155838.65154963458,
"2008-01-01": 157453.47971231106,
"2008-04-01": 156975.52769864534,
"2008-07-01": 160990.42773145565,
"2008-10-01": 161355.98110544594,
"2009-01-01": 160405.74856910727,
"2009-04-01": 167020.25383697977,
"2009-07-01": 168197.34601303033,
"2009-10-01": 172783.51986584236,
"2010-01-01": 179231.48953456272,
"2010-04-01": 177038.6848807111,
"2010-07-01": 178168.3427684583,
"2010-10-01": 180017.7644222005,
"2011-01-01": 181636.20171550877,
"2011-04-01": 185594.90242848132,
"2011-07-01": 193106.53445339628,
"2011-10-01": 198284.09013973002,
"2012-01-01": 202235.57259143904,
"2012-04-01": 219272.7315338023,
"2012-07-01": 229477.80619020574,
"2012-10-01": 237772.61956221703,
"2013-01-01": 252266.3725893558,
"2013-04-01": 257233.5675188658,
"2013-07-01": 266895.2102201412,
"2013-10-01": 276494.98211058613,
"2014-01-01": 282346.92963497253,
"2014-04-01": 289621.39021837054,
"2014-07-01": 296767.4688692952,
"2014-10-01": 304619.390353778,
"2015-01-01": 310486.805580872,
"2015-04-01": 315391.6141094612,
"2015-07-01": 322167.4990755833,
"2015-10-01": 328371.07904152304,
"2016-01-01": 334201.88737220905,
"2016-04-01": 335274.314759938,
"2016-07-01": 332528.28193924355,
"2016-10-01": 334932.9941201897,
"2017-01-01": 336274.55953503144,
"2017-04-01": 337705.83762557735,
"2017-07-01": 341257.222167249,
"2017-10-01": 341264.4404285126,
"2018-01-01": 345976.41826334666,
"2018-04-01": 352427.4814726085,
"2018-07-01": 355481.3215771848,
"2018-10-01": 362206.1631243717,
"2019-01-01": 365716.30045882304,
"2019-04-01": 372072.4950914781,
"2019-07-01": 373786.8321415738,
"2019-10-01": 370186.4665413279,
"2020-01-01": 374860.2907094832,
"2020-04-01": 373251.13403779955,
"2020-07-01": 377862.05621494376,
"2020-10-01": 387273.1221323556,
"2021-01-01": 386901.89726737246,
"2021-04-01": 389475.722997922,
"2021-07-01": 390763.151453287,
"2021-10-01": 389925.833146714,
"2022-01-01": 394236.1663012401,
"2022-04-01": 385059.1782848037,
"2022-07-01": 386766.8126637259,
"2022-10-01": 388488.3679750851,
"2023-01-01": 381079.3383781307,
"2023-04-01": 389437.5693312433,
"2023-07-01": 396427.93977491115,
"2023-10-01": 397261.13336076215,
"2024-01-01": 405018.1862686382,
"2024-04-01": 408452.01626973186,
"2024-07-01": 404867.4620989205
},
"priceEvolutionOnDistrict": {
"2014-02-01": null,
"2014-03-01": null,
"2014-04-01": null,
"2014-05-01": null,
"2014-06-01": null,
"2014-07-01": 339222.22222222225,
"2014-08-01": 333956.52173913043,
"2014-09-01": 323240,
"2014-10-01": 319033.3333333333,
"2014-11-01": 296324.3243243243,
"2014-12-01": 289100,
"2015-01-01": 284419.51219512196,
"2015-02-01": 272712.1951219512,
"2015-03-01": 277444,
"2015-04-01": 291444,
"2015-05-01": 286174.4680851064,
"2015-06-01": 268718.36734693876,
"2015-07-01": 261869.23076923078,
"2015-08-01": null,
"2015-09-01": 265966.6666666667,
"2015-10-01": 256244.44444444444,
"2015-11-01": 253585.45454545456,
"2015-12-01": 247777.35849056602,
"2016-01-01": 254820.4081632653,
"2016-02-01": 251697.95918367346,
"2016-03-01": 250615.38461538462,
"2016-04-01": 262490.1960784314,
"2016-05-01": 249560.9756097561,
"2016-06-01": 229061.22448979592,
"2016-07-01": 243096.15384615384,
"2016-08-01": 246254.9019607843,
"2016-09-01": 250291.66666666666,
"2016-10-01": 246659.5744680851,
"2016-11-01": 254754.71698113208,
"2016-12-01": 267153.8461538461,
"2017-01-01": 259566.03773584907,
"2017-02-01": 255603.77358490566,
"2017-03-01": 275925.9259259259,
"2017-04-01": 319898.30508474575,
"2017-05-01": 314000,
"2017-06-01": 322347.82608695654,
"2017-07-01": 335016.6666666667,
"2017-08-01": 357600,
"2017-09-01": 354932.2033898305,
"2017-10-01": null,
"2017-11-01": null,
"2017-12-01": 346459.01639344264,
"2018-01-01": 343196.7213114754,
"2018-02-01": 360117.64705882355,
"2018-03-01": 352100,
"2018-04-01": 381826.92307692306,
"2018-05-01": 392925.9259259259,
"2018-06-01": 386235.29411764705,
"2018-07-01": 351954.54545454547,
"2018-08-01": 347523.8095238095,
"2018-09-01": 345368.4210526316,
"2018-10-01": 348605.2631578947,
"2018-11-01": 305941.17647058825,
"2018-12-01": 338914.28571428574,
"2019-01-01": 347810.8108108108,
"2019-02-01": null,
"2019-03-01": 342902.43902439025,
"2019-04-01": 334604.1666666667,
"2019-05-01": 342367.3469387755,
"2019-06-01": 307086.2068965517,
"2019-07-01": 293807.01754385966,
"2019-08-01": 297296.875,
"2019-09-01": 303808.82352941175,
"2019-10-01": 298588.23529411765,
"2019-11-01": 303390.8045977011,
"2019-12-01": null,
"2020-01-01": 302193.1818181818,
"2020-02-01": 303477.77777777775,
"2020-03-01": 301298.8505747126,
"2020-04-01": 300819.2771084337,
"2020-05-01": 299662.6506024096,
"2020-06-01": 303544.30379746837,
"2020-07-01": 297325,
"2020-08-01": 315351.35135135136,
"2020-09-01": null,
"2020-10-01": 342307.6923076923,
"2020-11-01": 341328.76712328766,
"2020-12-01": 339888.8888888889,
"2021-01-01": 353983.0508474576,
"2021-02-01": 336533.3333333333,
"2021-03-01": 336096.77419354836,
"2021-04-01": 352468.75,
"2021-05-01": 398376.8115942029,
"2021-06-01": 396583.3333333333,
"2021-07-01": 406716.41791044775,
"2021-08-01": 394225.3521126761,
"2021-09-01": 392027.02702702704,
"2021-10-01": 382285.71428571426,
"2021-11-01": 366000,
"2021-12-01": 373523.07692307694,
"2022-01-01": 373523.07692307694,
"2022-02-01": 385016.6666666667,
"2022-03-01": 384338.70967741933,
"2022-04-01": 357710.14492753625,
"2022-05-01": 351534.2465753425,
"2022-06-01": 303028.9855072464,
"2022-07-01": 298101.4492753623,
"2022-08-01": 304987.5,
"2022-09-01": 312197.67441860464,
"2022-10-01": 319613.2075471698,
"2022-11-01": 314495.86776859505,
"2022-12-01": 309904,
"2023-01-01": 336561.53846153844,
"2023-02-01": 323183.67346938775,
"2023-03-01": 328421.38364779874,
"2023-04-01": 332729.03225806454,
"2023-05-01": 358493.3333333333,
"2023-06-01": 355891.8918918919,
"2023-07-01": 368509.93377483444,
"2023-08-01": 371834.35582822084,
"2023-09-01": 393382.7160493827,
"2023-10-01": 392179.7752808989,
"2023-11-01": 382681.31868131866,
"2023-12-01": 382854.2713567839,
"2024-01-01": 387720.5882352941,
"2024-02-01": 370569.30693069304,
"2024-03-01": 376446.07843137253,
"2024-04-01": 362331.8181818182,
"2024-05-01": 367123.40425531915,
"2024-06-01": 350550.6072874494,
"2024-07-01": 347219.1235059761,
"2024-08-01": 355300.78125,
"2024-09-01": 365310.48387096776,
"2024-10-01": 351296.7479674797,
"2024-11-01": 337132.4786324786,
"2024-12-01": 359390.6976744186,
"2025-01-01": null,
"2025-02-01": null
},
"priceEvolutionOnSubLocality": {
"2014-02-01": null,
"2014-03-01": null,
"2014-04-01": null,
"2014-05-01": null,
"2014-06-01": null,
"2014-07-01": 208268.39186691312,
"2014-08-01": 208379.6238244514,
"2014-09-01": 209899.45504087192,
"2014-10-01": 213014.5584725537,
"2014-11-01": 211891.54774972558,
"2014-12-01": 210834.88843813387,
"2015-01-01": 209120.7476635514,
"2015-02-01": 208677.94676806085,
"2015-03-01": 209497.60273972602,
"2015-04-01": 210006.73967986522,
"2015-05-01": 211225.53897180763,
"2015-06-01": 211807.5364667747,
"2015-07-01": 212045.96322941646,
"2015-08-01": 212281.07229894394,
"2015-09-01": 214111.02236421726,
"2015-10-01": 214461.7293835068,
"2015-11-01": 211823.57320099254,
"2015-12-01": 212939.72950126795,
"2016-01-01": 212849.2144638404,
"2016-02-01": 214660.15585509688,
"2016-03-01": 215714.43286071726,
"2016-04-01": 215253.6717352415,
"2016-05-01": 213750.77375565612,
"2016-06-01": 211628.07798165138,
"2016-07-01": 211781.40654205607,
"2016-08-01": 213367.13951310862,
"2016-09-01": 214414.92173112338,
"2016-10-01": 215097.57929104476,
"2016-11-01": 214763.56759176365,
"2016-12-01": 215378.8913427562,
"2017-01-01": 216908.77768313457,
"2017-02-01": 217930.4556354916,
"2017-03-01": 218436.02225312934,
"2017-04-01": 218958.1673306773,
"2017-05-01": 220640.25974025973,
"2017-06-01": 221004.3942247332,
"2017-07-01": 222955.99489795917,
"2017-08-01": 224621.39654067904,
"2017-09-01": 225263.05609284333,
"2017-10-01": 225841.80432020332,
"2017-11-01": 223435.22654754308,
"2017-12-01": 223602.64900662252,
"2018-01-01": 224495.25745257453,
"2018-02-01": 224707.06574394464,
"2018-03-01": 224610.3574087863,
"2018-04-01": 224782.7670311186,
"2018-05-01": 226494.36379928316,
"2018-06-01": 227171.11212397448,
"2018-07-01": 229680.54347826086,
"2018-08-01": 228967.33071638862,
"2018-09-01": 226900.87332053742,
"2018-10-01": 227967.40284360189,
"2018-11-01": 230208.3188405797,
"2018-12-01": 233695.98187311177,
"2019-01-01": 236258.59281437125,
"2019-02-01": 238024.56947162427,
"2019-03-01": 237838.84615384616,
"2019-04-01": 240034.40662373506,
"2019-05-01": 242778.60422405877,
"2019-06-01": 243892.25978647688,
"2019-07-01": 243771.31147540984,
"2019-08-01": 242624.80141218007,
"2019-09-01": 243787.52066115703,
"2019-10-01": 247746.50827933766,
"2019-11-01": 246846.918767507,
"2019-12-01": 244561.86499652054,
"2020-01-01": 244267.5,
"2020-02-01": 243548.74670184698,
"2020-03-01": 244289.87508218279,
"2020-04-01": 244048.36289222373,
"2020-05-01": 245269.1056910569,
"2020-06-01": 245778.75,
"2020-07-01": 244281.11475409835,
"2020-08-01": 247048.2908638906,
"2020-09-01": 252070.5846153846,
"2020-10-01": 252123.18660880346,
"2020-11-01": 251400.0709723208,
"2020-12-01": 252382.48546511628,
"2021-01-01": 254617.3883161512,
"2021-02-01": 258015.61643835617,
"2021-03-01": 259272.64957264956,
"2021-04-01": 261252.85815102328,
"2021-05-01": 262236.55126498005,
"2021-06-01": 265518.7969924812,
"2021-07-01": 268615.3846153846,
"2021-08-01": 270187.0967741936,
"2021-09-01": 271412.2807017544,
"2021-10-01": 270277.2351615327,
"2021-11-01": 273841.1067193676,
"2021-12-01": 275538.5232744783,
"2022-01-01": 276980.0637958533,
"2022-02-01": 280930.0986842105,
"2022-03-01": 280374.5941558442,
"2022-04-01": 280893.1327160494,
"2022-05-01": 279294.85294117645,
"2022-06-01": 282032.3275862069,
"2022-07-01": 279430.2075876879,
"2022-08-01": 282129.60436562076,
"2022-09-01": 287790.71288423805,
"2022-10-01": 289429.347826087,
"2022-11-01": 290627.2980501393,
"2022-12-01": 290445.28301886795,
"2023-01-01": 293766.05276256846,
"2023-02-01": 297055.28846153844,
"2023-03-01": 299734.4186046512,
"2023-04-01": 299663.3348477965,
"2023-05-01": 304238.7209811651,
"2023-06-01": 308650.57755775575,
"2023-07-01": 308345.98481821816,
"2023-08-01": 311264.49009537784,
"2023-09-01": 312260.4490500864,
"2023-10-01": 317359.6628161099,
"2023-11-01": 316776.9044740024,
"2023-12-01": 318451.7396184063,
"2024-01-01": 320812.14174048987,
"2024-02-01": 322005.1599587203,
"2024-03-01": 322802.29436172807,
"2024-04-01": 322603.5160767985,
"2024-05-01": 324593.7090432503,
"2024-06-01": 324015.5691142436,
"2024-07-01": 322095.7268537914,
"2024-08-01": 325172.0364741641,
"2024-09-01": 324680.5143422354,
"2024-10-01": 323547.26952436875,
"2024-11-01": 318078.6382639857,
"2024-12-01": 318418.8449848024,
"2025-01-01": null,
"2025-02-01": null
},
"priceEvolutionOnLocality": {
"2014-02-01": null,
"2014-03-01": null,
"2014-04-01": null,
"2014-05-01": null,
"2014-06-01": null,
"2014-07-01": 223440.6165004533,
"2014-08-01": 221673.2283464567,
"2014-09-01": 223287.1972318339,
"2014-10-01": 225214.32908318154,
"2014-11-01": 224733.89355742297,
"2014-12-01": 223074.94758909853,
"2015-01-01": 222051.69082125605,
"2015-02-01": 222362.96660117878,
"2015-03-01": 221988.16029143898,
"2015-04-01": 222004.57875457875,
"2015-05-01": 222819.90888382687,
"2015-06-01": 221373.7341772152,
"2015-07-01": 221338.61386138614,
"2015-08-01": 221011.12631098952,
"2015-09-01": 223224.21768707482,
"2015-10-01": 222794.715261959,
"2015-11-01": 221392.94449670744,
"2015-12-01": 221696.95799130853,
"2016-01-01": 223191.12171837708,
"2016-02-01": 224045.4943984413,
"2016-03-01": 225691.9024390244,
"2016-04-01": 226379.28534438115,
"2016-05-01": 226535.3781068218,
"2016-06-01": 226071.3828083289,
"2016-07-01": 228330.441898527,
"2016-08-01": 229116.13958560524,
"2016-09-01": 228956.63811563168,
"2016-10-01": 230000.53561863952,
"2016-11-01": 230636.41025641025,
"2016-12-01": 230325.91826176926,
"2017-01-01": 230948.14814814815,
"2017-02-01": 231806.13400642495,
"2017-03-01": 231931.77098614507,
"2017-04-01": 231467.40427184466,
"2017-05-01": 233661.48513360933,
"2017-06-01": 233734.12068338785,
"2017-07-01": 234511.81938813123,
"2017-08-01": 236606.33665559246,
"2017-09-01": 238360.31310140635,
"2017-10-01": 240171.79280882876,
"2017-11-01": 238544.8837866478,
"2017-12-01": 238465.71966064183,
"2018-01-01": 239628.3878923767,
"2018-02-01": 240345.8741339492,
"2018-03-01": 240220.77473426002,
"2018-04-01": 241347.06561085972,
"2018-05-01": 242398.76846117197,
"2018-06-01": 242234.56322393822,
"2018-07-01": 244363.64411157026,
"2018-08-01": 243564.71355498722,
"2018-09-01": 241642.75715002508,
"2018-10-01": 241108.85437375747,
"2018-11-01": 242601.56623376624,
"2018-12-01": 244665.04614549404,
"2019-01-01": 246012.91823561053,
"2019-02-01": 246783.77748691099,
"2019-03-01": 246780.23674729798,
"2019-04-01": 248684.63073852294,
"2019-05-01": 250288.81222276983,
"2019-06-01": 252188.16169393648,
"2019-07-01": 252115.99210266536,
"2019-08-01": 251818.62035697058,
"2019-09-01": 253017.88170563962,
"2019-10-01": 256235.34201954398,
"2019-11-01": 255265.11814177013,
"2019-12-01": 252708.0291970803,
"2020-01-01": 252871.88612099644,
"2020-02-01": 252774.86507324595,
"2020-03-01": 253772.70970235794,
"2020-04-01": 254144.578313253,
"2020-05-01": 258653.39116719243,
"2020-06-01": 259659.72060535508,
"2020-07-01": 257650.40431266846,
"2020-08-01": 259000.71886651753,
"2020-09-01": 263305.90785108734,
"2020-10-01": 263589.87962616823,
"2020-11-01": 261873.31684434967,
"2020-12-01": 262725.0665506742,
"2021-01-01": 263970.04488778056,
"2021-02-01": 266951.9292035398,
"2021-03-01": 267692.37735849054,
"2021-04-01": 269905.4976055725,
"2021-05-01": 270614.091954023,
"2021-06-01": 269936.8293515358,
"2021-07-01": 272272.8524590164,
"2021-08-01": 274259.11393554247,
"2021-09-01": 276725.4454088625,
"2021-10-01": 275423.0046948357,
"2021-11-01": 278700.1962708538,
"2021-12-01": 279522.48289345065,
"2022-01-01": 281180.62953995157,
"2022-02-01": 285283.5230084117,
"2022-03-01": 284015.5113911779,
"2022-04-01": 285380.71065989847,
"2022-05-01": 285059.8855129899,
"2022-06-01": 289799.3197278912,
"2022-07-01": 288131.4334325819,
"2022-08-01": 291407.0004070004,
"2022-09-01": 297246.1300309597,
"2022-10-01": 297373.87872264086,
"2022-11-01": 297856.7630442007,
"2022-12-01": 297650.06426735217,
"2023-01-01": 302273.56526910496,
"2023-02-01": 306711.7916428163,
"2023-03-01": 309871.4207048458,
"2023-04-01": 310230.17356475303,
"2023-05-01": 313934.01534526853,
"2023-06-01": 316715.17175572517,
"2023-07-01": 317951.75644028105,
"2023-08-01": 321339.4753956211,
"2023-09-01": 324787.8848460616,
"2023-10-01": 329278.1858244583,
"2023-11-01": 333586.5793201133,
"2023-12-01": 337790.7091267236,
"2024-01-01": 341767.7514346119,
"2024-02-01": 345069.09640330187,
"2024-03-01": 344922.67645003495,
"2024-04-01": 346084.1100026254,
"2024-05-01": 347898.4675518054,
"2024-06-01": 348814.084255623,
"2024-07-01": 348685.2388271459,
"2024-08-01": 349884.9915206331,
"2024-09-01": 349504.5444530131,
"2024-10-01": 347917.11361646233,
"2024-11-01": 343246.2567433667,
"2024-12-01": 342412.0323841429,
"2025-01-01": null,
"2025-02-01": null
},
"priceEvolutionOnAdmin2": {
"2014-02-01": null,
"2014-03-01": 235154.47208737864,
"2014-04-01": 235112.79131590607,
"2014-05-01": 232099.88293721178,
"2014-06-01": 233060.41275797374,
"2014-07-01": 232395.55714797563,
"2014-08-01": 232110.60084194414,
"2014-09-01": 231634.54124903624,
"2014-10-01": 234888.35132117604,
"2014-11-01": 231330.44107013737,
"2014-12-01": 229180.26706231455,
"2015-01-01": 229089.25979680696,
"2015-02-01": 229395.4005934718,
"2015-03-01": 227700.4004368402,
"2015-04-01": 226313.7589621031,
"2015-05-01": 226234.1244387428,
"2015-06-01": 227153.87076135637,
"2015-07-01": 226130.16992625842,
"2015-08-01": 225484.671029969,
"2015-09-01": 229779.8132183908,
"2015-10-01": 231624.23535952557,
"2015-11-01": 233452.21284046693,
"2015-12-01": 233986.94530577087,
"2016-01-01": 237229.8646837034,
"2016-02-01": 235308.00875172732,
"2016-03-01": 238702.2770398482,
"2016-04-01": 239828.59821847163,
"2016-05-01": 240840.29411764705,
"2016-06-01": 239825.5450431921,
"2016-07-01": 240797,
"2016-08-01": 237253.8641239571,
"2016-09-01": 236326.80059084194,
"2016-10-01": 241694.5905429072,
"2016-11-01": 242147.2720052945,
"2016-12-01": 241264.5663010967,
"2017-01-01": 242392.77123372597,
"2017-02-01": 241295.03267973856,
"2017-03-01": 237495.82806573957,
"2017-04-01": 237732.0295202952,
"2017-05-01": 240027.22646310434,
"2017-06-01": 241060.24395753333,
"2017-07-01": 242560.5696385542,
"2017-08-01": 245638.03557431413,
"2017-09-01": 249005.29905277403,
"2017-10-01": 251067.44913698127,
"2017-11-01": 252620.05130326853,
"2017-12-01": 254736.75438596492,
"2018-01-01": 253129.93451824135,
"2018-02-01": 252220.48895899055,
"2018-03-01": 249604.23202614379,
"2018-04-01": 249586.03803486528,
"2018-05-01": 250631.08229426434,
"2018-06-01": 252843.91879964696,
"2018-07-01": 251793.60587002095,
"2018-08-01": 252068.94780106863,
"2018-09-01": 250175.84388185653,
"2018-10-01": 249888.98305084746,
"2018-11-01": 248515.67328918324,
"2018-12-01": 247720.48300536672,
"2019-01-01": 247705.42986425338,
"2019-02-01": 253915.02969392415,
"2019-03-01": 255960.34639927073,
"2019-04-01": 256880.01672240804,
"2019-05-01": 261146.48212226067,
"2019-06-01": 264820.68206820684,
"2019-07-01": 263825.08131550415,
"2019-08-01": 262856.88920454547,
"2019-09-01": 262891.78221170104,
"2019-10-01": 261205.12820512822,
"2019-11-01": 257884.19088243134,
"2019-12-01": 257476.5306122449,
"2020-01-01": 263166.4364287542,
"2020-02-01": 265246.4699683878,
"2020-03-01": 268429.1092436975,
"2020-04-01": 273602.5535420099,
"2020-05-01": 274964.1254007837,
"2020-06-01": 272257.881417209,
"2020-07-01": 269482.5448028674,
"2020-08-01": 270682.0729237002,
"2020-09-01": 272193.2129332945,
"2020-10-01": 268318.90376829647,
"2020-11-01": 264658.09327846364,
"2020-12-01": 270152.2915914832,
"2021-01-01": 267816.9352074049,
"2021-02-01": 267762.0271759089,
"2021-03-01": 275427.652733119,
"2021-04-01": 281560.18518518517,
"2021-05-01": 283148.86731391586,
"2021-06-01": 292768.68953386106,
"2021-07-01": 294732.93768545997,
"2021-08-01": 292528.6468915075,
"2021-09-01": 290141.7711896617,
"2021-10-01": 290267.67863754166,
"2021-11-01": 287660.35592578567,
"2021-12-01": 286661.2466124661,
"2022-01-01": 290400.90771558246,
"2022-02-01": 297030.325443787,
"2022-03-01": 304966.73455532925,
"2022-04-01": 313531.8694724001,
"2022-05-01": 322472.0580333154,
"2022-06-01": 329436.5234375,
"2022-07-01": 331379.016064257,
"2022-08-01": 330283.0841949778,
"2022-09-01": 330794.8765685604,
"2022-10-01": 328663.7043310876,
"2022-11-01": 326099.86516853934,
"2022-12-01": 326982.48538409243,
"2023-01-01": 328034.747513027,
"2023-02-01": 328053.64772907103,
"2023-03-01": 329476.20605069504,
"2023-04-01": 330347.29265499755,
"2023-05-01": 332829.0147855365,
"2023-06-01": 334049.68287526426,
"2023-07-01": 333631.7761678741,
"2023-08-01": 336139.20223281777,
"2023-09-01": 337862.0585571989,
"2023-10-01": 340506.19723369856,
"2023-11-01": 340345.8318800139,
"2023-12-01": 342768.12969553185,
"2024-01-01": 343896.3370493702,
"2024-02-01": 348099.6703637977,
"2024-03-01": 346413.40560830204,
"2024-04-01": 349056.05773109826,
"2024-05-01": 349786.5339553482,
"2024-06-01": 352899.817224622,
"2024-07-01": 350717.9491391773,
"2024-08-01": 354174.9886444747,
"2024-09-01": 360661.49566201435,
"2024-10-01": 364065.5029327343,
"2024-11-01": 362934.57704918034,
"2024-12-01": 367079.79078471864,
"2025-01-01": null,
"2025-02-01": null
},
"priceEvolutionOnAdmin1": {
"2014-02-01": 255295.0437144974,
"2014-03-01": 252050.65708418892,
"2014-04-01": 254140.1930894309,
"2014-05-01": 259000,
"2014-06-01": 257234.96199782845,
"2014-07-01": 252436.45083932855,
"2014-08-01": 249511.11642361942,
"2014-09-01": 250725.8566978193,
"2014-10-01": 252035.1234588752,
"2014-11-01": 251182.76998546513,
"2014-12-01": 249568.2202366578,
"2015-01-01": 249000,
"2015-02-01": 249000,
"2015-03-01": 249000,
"2015-04-01": 249000,
"2015-05-01": 249000,
"2015-06-01": 249497.24467303453,
"2015-07-01": 254259.19439579686,
"2015-08-01": 259000,
"2015-09-01": 256772.60330578513,
"2015-10-01": 255108.05560845553,
"2015-11-01": 258558.41766329345,
"2015-12-01": 252830.11248918372,
"2016-01-01": 248018.27507017096,
"2016-02-01": 255941.23939679548,
"2016-03-01": 259760.6287039423,
"2016-04-01": 264153.99239543726,
"2016-05-01": 264115.15552614164,
"2016-06-01": 262901.0727056019,
"2016-07-01": 266076.7274268758,
"2016-08-01": 268286.5168539326,
"2016-09-01": 270750.4648568241,
"2016-10-01": 273460.2551521099,
"2016-11-01": 271846.9387755102,
"2016-12-01": 265306.92690394184,
"2017-01-01": 260785.90899559658,
"2017-02-01": 260877.4532529748,
"2017-03-01": 263068.08510638296,
"2017-04-01": 266215.7145803258,
"2017-05-01": 272931.6481815837,
"2017-06-01": 273932.63915670395,
"2017-07-01": 269607.71358328214,
"2017-08-01": 271769.03606834,
"2017-09-01": 275000,
"2017-10-01": 272254.6605698206,
"2017-11-01": 269541.5437987858,
"2017-12-01": 273339.2589419576,
"2018-01-01": 279466.7736873868,
"2018-02-01": 277732.0097879282,
"2018-03-01": 277420.08822531387,
"2018-04-01": 281068.35289855074,
"2018-05-01": 286297.650533049,
"2018-06-01": 289262.08623693377,
"2018-07-01": 284450.9779019558,
"2018-08-01": 278736.13847452856,
"2018-09-01": 284826.65547024953,
"2018-10-01": 288746.466623179,
"2018-11-01": 288209.3714285714,
"2018-12-01": 285873.49558705534,
"2019-01-01": 287931.0154525386,
"2019-02-01": 296281.14210394176,
"2019-03-01": 299214.01315474766,
"2019-04-01": 296837.7455166524,
"2019-05-01": 297043.6546262314,
"2019-06-01": 299000,
"2019-07-01": 297305.59225011006,
"2019-08-01": 297199.76608187135,
"2019-09-01": 304243.7422332682,
"2019-10-01": 302429.86530422664,
"2019-11-01": 299000,
"2019-12-01": 300381.4822590804,
"2020-01-01": 313706.1588330632,
"2020-02-01": 310406.53188180405,
"2020-03-01": 299350.8041549012,
"2020-04-01": 303816.2557844691,
"2020-05-01": 310725.3238052702,
"2020-06-01": 308789.82645535853,
"2020-07-01": 311072.78949262324,
"2020-08-01": 309038.698936978,
"2020-09-01": 308637.7362236629,
"2020-10-01": 310281.7263908137,
"2020-11-01": 307538.46153846156,
"2020-12-01": 314515.6576262752,
"2021-01-01": 316153.5596062705,
"2021-02-01": 316730.6327616795,
"2021-03-01": 321959.6354166667,
"2021-04-01": 324781.56799259945,
"2021-05-01": 326355.84064821067,
"2021-06-01": 328541.76175262436,
"2021-07-01": 324728.51140908024,
"2021-08-01": 322425.0246615087,
"2021-09-01": 326956.66601600626,
"2021-10-01": 329181.71428571426,
"2021-11-01": 324980.17115424754,
"2021-12-01": 323440.2430790007,
"2022-01-01": 331619.85846970364,
"2022-02-01": 337224.76326603536,
"2022-03-01": 343940.6793434097,
"2022-04-01": 348484.23064670275,
"2022-05-01": 351499.68525547447,
"2022-06-01": 356874.40571891016,
"2022-07-01": 357344.38106983196,
"2022-08-01": 352164.9733913885,
"2022-09-01": 352285.92321755027,
"2022-10-01": 351761.7884651512,
"2022-11-01": 350478.0513449575,
"2022-12-01": 354684.56375838927,
"2023-01-01": 360039.3765182186,
"2023-02-01": 362429.82525728986,
"2023-03-01": 370790.1188006789,
"2023-04-01": 381579.49249093735,
"2023-05-01": 384070.1827242525,
"2023-06-01": 382296.4158863416,
"2023-07-01": 380228.3865908645,
"2023-08-01": 380834.09120436537,
"2023-09-01": 385000,
"2023-10-01": 387069.3086592179,
"2023-11-01": 389000,
"2023-12-01": 384417.13272404857,
"2024-01-01": 377864.1697877653,
"2024-02-01": 383985.05666251556,
"2024-03-01": 386475.4533199195,
"2024-04-01": 385080.1788160646,
"2024-05-01": 387913.61032010155,
"2024-06-01": 391725.06260434055,
"2024-07-01": 389173.59485904477,
"2024-08-01": 389770.9870179458,
"2024-09-01": 399000,
"2024-10-01": 398507.4771174423,
"2024-11-01": 398464.39085938595,
"2024-12-01": 399000,
"2025-01-01": null,
"2025-02-01": null
}
}
404
ShowHideContent-Type: application/json
{
"errors": [
{
"message": "Resource not found",
"type": "API_Exception_NotFoundException",
}
]
}
This endpoint is used to retrieve the mobility data for the given valuation.
mobilityScore
(number, optional)
Realo mobility score.
This is a score between 0.0 and 1.0 (inclusive), based on a combination of distances to nearby utilities.
The lower the distance, the higher the score will be.
distanceToCityCenter
(integer, optional)
Distance to the nearest city center, in meters.
distanceToLocalityCenter
(integer, optional)
Distance to the nearest locality center, in meters.
distanceToNearestTownCenter
(integer, optional)
Distance to the nearest town center, in meters.
distanceToSublocalityCenter
(integer, optional)
Distance to the nearest sublocality center, in meters.
distanceToNearestLargeCityCenter
(integer, optional)
Distance to the nearest large city center, in meters.
distanceToBusStop
(integer, optional)
Distance to the nearest bus stop, in meters.
distanceToTrainStation
(integer, optional)
Distance to the nearest train stop, in meters.
distanceToSchool
(integer, optional)
Distance to the nearest school, in meters.
distanceToStores
(integer, optional)
Distance to the nearest store, in meters.
distanceToHighways
(integer, optional)
Distance to the nearest highway, in meters.
buildingDensity
(number, optional)
Number of buildings per square kilometer.
inhabitantsDensity
(number, optional)
Number of inhabitants per square kilometer.
transitTypeCityCenter
(enum[MobilityTransitType], optional)
Distance to the nearest city center, expressed as a transit type.
transitTypeBusStop
(enum[MobilityTransitType], optional)
Distance to the nearest bus stop, expressed as a transit type.
transitTypeTrainStation
(enum[MobilityTransitType], optional)
Distance to the nearest train station, expressed as a transit type.
transitTypeSchool
(enum[MobilityTransitType], optional)
Distance to the nearest school, expressed as a transit type.
transitTypeStores
(enum[MobilityTransitType], optional)
Distance to the nearest store, expressed as a transit type.
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/json
{
"mobilityScore": 0.94,
"distanceToCityCenter": 347,
"distanceToLocalityCenter": 3213,
"distanceToNearestTownCenter": 347,
"distanceToSublocalityCenter": 347,
"distanceToNearestLargeCityCenter": 347,
"distanceToBusStop": 68,
"distanceToTrainStation": 791,
"distanceToSchool": 78,
"distanceToStores": 142,
"distanceToHighways": 2793,
"buildingDensity": 162.88,
"inhabitantsDensity": 474.31,
"transitTypeCityCenter": "walking-distance",
"transitTypeBusStop": "walking-distance",
"transitTypeTrainStation": "walking-distance",
"transitTypeSchool": "walking-distance",
"transitTypeStores": "walking-distance"
}
404
ShowHideContent-Type: application/json
{
"errors": [
{
"message": "Resource not found",
"type": "API_Exception_NotFoundException",
}
]
}
This endpoint is used to retrieve the neighbourhood data for the given valuation.
averageIncome
(number, optional)
Median income for this neighbourhood, in EUR.
percentJobSeekingPeople
(number, optional)
Percentage of people looking for a job in this neighbourhood.
averageAge
(number, optional)
Median age of inhabitants in this neighbourhood.
percentMarriedHouseholders
(number, optional)
Percentage of households who are married in this neighbourhood.
percentLaborers
(number, optional)
Percentage of laborers in this neighbourhood.
totalPopulation
(integer, optional)
Total population in this neighbourhood.
numberOfOnlineListingsPer1kInhabitants
(number, optional)
Number of online listings per 1000 inhabitants for this neighbourhood.
educationDistribution
(map[string, number], optional)
Map of {key => percentage} entries.
The possible keys are:
genderDistribution
(map[string, number], optional)
Map of {key => percentage} entries.
The possible keys are:
workforceDistribution
(map[string, number], optional)
Map of {key => percentage} entries.
The possible keys are:
livingArrangementDistribution
(map[string, number], optional)
Map of {key => percentage} entries.
The possible keys are:
relationshipDistribution
(map[string, number], optional)
Map of {key => percentage} entries.
The possible keys are:
ageDistribution
(map[string, number], optional)
Map of {key => percentage} entries.
The possible key formats are:
familySizeDistribution
(map[string, number], optional)
Map of {key => percentage} entries.
The possible key formats are:
culturalDiversityDistribution
(map[string, number], optional)
Map of {key => percentage} entries.
The keys are country-dependant, possible key formats are:
Group A:
Group B:
Group C:
averageIncomes
(map[string, number], optional)
Map of {year => median income per person} entries.
averageSaleListingDuration
(number, optional)
Median listing duration (in days) for sale listings in this neighbourhood.
averageRentListingDuration
(number, optional)
Median listing duration (in days) for rent listings in this neighbourhood.
householdsMovedDistribution
(map[string, number], optional)
Map of {year range => percentage of households that moved in this period} entries.
The possible key formats are:
ownershipDistribution
(map[string, number], optional)
Map of {ownership type => percentage} entries.
The possible key formats are:
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/json
{
"averageIncome": 2002.3846153846155,
"percentJobSeekingPeople": 4.86,
"averageAge": 39.42,
"percentMarriedHouseholders": 23.44,
"percentLaborers": 47.93,
"totalPopulation": 2760,
"numberOfOnlineListingsPer1kInhabitants": 14.08,
"educationDistribution": {
"high": 49.92,
"low": 26.66
},
"genderDistribution": {
"women": 49.86,
"men": 50.14
},
"workforceDistribution": {
"employed": 90.8,
"non-employed": 9.200000000000003
},
"livingArrangementDistribution": {
"singles": 58.88,
"married": 26.55,
"divorced": 9.2,
"widowers": 5.37
},
"relationshipDistribution": {
"hetero": 98.61,
"same-sex": 1.39
},
"ageDistribution": {
"0-20": 13.79,
"20-24": 7.9,
"25-39": 36.36,
"40-59": 24.51,
"60+": 17.45
},
"familySizeDistribution": {
"1": 64.22,
"2": 22.39,
"3": 6.58,
"4": 4.64,
"5": 1.65,
"5+": 0.53
},
"culturalDiversityDistribution": {
"foreigner": 15.8,
"local": 84.2
},
"averageIncomes": {
"2005": 1496.1538461538462,
"2006": 1598.3076923076924,
"2007": 1661.076923076923,
"2008": 1741.923076923077,
"2009": 1759.6153846153845,
"2010": 1786.4615384615386,
"2011": 1846.5384615384614,
"2012": 2002.3846153846155,
"2013": 2002.3846153846155
},
"averageSaleListingDuration": 9,
"averageRentListingDuration": 9,
"householdsMovedDistribution": {
"0-2": 9.59,
"2-4": 17.84,
"5-9": 17.25,
"10+": 55.33
},
"ownershipDistribution": {
"renter": 32.78,
"owner": 67.22
}
}
404
ShowHideContent-Type: application/json
{
"errors": [
{
"message": "Resource not found",
"type": "API_Exception_NotFoundException",
}
]
}
This endpoint is used to retrieve similar transactions for the given valuation.
transactionId
(integer, optional)
Unique id number for the transaction.
type
(enum[EstateType], optional)
The type of estate.
way
(enum[ListingWay], optional)
The way of the transaction: sale or rent.
firstListing
(datetime[unix_timestamp], optional)
First time this listing came online.
lastListing
(datetime[unix_timestamp], optional)
Last time this listing was online.
price
(number, optional)
Absolute value for sale, per month for rent.
currency
(enum[Currency], optional)
Currency in which the transaction is expressed.
addressId
(integer, optional)
Address id of the transaction.
habitableArea
(number, optional)
Habitable size in m².
landArea
(number, optional)
Land size in m².
numberOfBedrooms
(integer, optional)
Number of bedrooms.
numberOfBathrooms
(integer, optional)
Number of bathrooms.
numberOfRooms
(integer, optional)
Number of rooms.
latitude
(number, optional)
Latitude of the property.
longitude
(number, optional)
Longitude of the property.
distance
(number, optional)
Distance to the transaction, in m.
number
(required) Example: 1ID of the valuation
string
(required) Example: ENLanguage of the report
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
{
"way": "SALE"
}
200
ShowHideContent-Type: application/json
[
{
"transactionId": 4732322,
"type": "HOUSE",
"way": "SALE",
"firstListing": "2016-09-28T14:19:28+02:00",
"lastListing": null,
"price": 299000,
"currency": "EUR",
"addressId": 3641580,
"habitableArea": 120,
"landArea": 700,
"numberOfBedrooms": 2,
"numberOfBathrooms": 1,
"numberOfRooms": 4,
"latitude": 51.186746178398,
"longitude": 2.8190564420228,
"distance": 328.845
}
]
404
ShowHideContent-Type: application/json
{
"errors": [
{
"message": "Resource not found",
"type": "API_Exception_NotFoundException",
}
]
}
This endpoint is used to download the cadastral map image for the given valuation.
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/png
404
ShowHideContent-Type: application/json
{
"errors": [
{
"message": "Resource not found",
"type": "API_Exception_NotFoundException",
}
]
}
This endpoint is used to download the street view image for the given valuation.
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
302
ShowHideContent-Type: application/jpeg
404
ShowHideContent-Type: application/json
{
"errors": [
{
"message": "Resource not found",
"type": "API_Exception_NotFoundException",
}
]
}
This endpoint is used to download the market insights price per square meters image for the given valuation and language.
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/png
404
ShowHideContent-Type: application/json
{
"errors": [
{
"message": "Resource not found",
"type": "API_Exception_NotFoundException",
}
]
}
This endpoint is used to download the mobility score image for the given valuation and language.
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/png
404
ShowHideContent-Type: application/json
{
"errors": [
{
"message": "Resource not found",
"type": "API_Exception_NotFoundException",
}
]
}
This endpoint is used to download the mobility public transport image for the given valuation and language.
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/png
404
ShowHideContent-Type: application/json
{
"errors": [
{
"message": "Resource not found",
"type": "API_Exception_NotFoundException",
}
]
}
This endpoint is used to download the mobility schools image for the given valuation and language.
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/png
404
ShowHideContent-Type: application/json
{
"errors": [
{
"message": "Resource not found",
"type": "API_Exception_NotFoundException",
}
]
}
This endpoint is used to download the mobility nearest cities image for the given valuation and language.
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/png
404
ShowHideContent-Type: application/json
{
"errors": [
{
"message": "Resource not found",
"type": "API_Exception_NotFoundException",
}
]
}
This endpoint is used to download the neighbourhood job seekers image for the given valuation and language.
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/png
404
ShowHideContent-Type: application/json
{
"errors": [
{
"message": "Resource not found",
"type": "API_Exception_NotFoundException",
}
]
}
This endpoint is used to download the neighbourhood cultural diversity image for the given valuation and language.
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/png
404
ShowHideContent-Type: application/json
{
"errors": [
{
"message": "Resource not found",
"type": "API_Exception_NotFoundException",
}
]
}
This endpoint is used to download the neighbourhood big families image for the given valuation and language.
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/png
404
ShowHideContent-Type: application/json
{
"errors": [
{
"message": "Resource not found",
"type": "API_Exception_NotFoundException",
}
]
}
This endpoint is used to download the neighbourhood affordability image for the given valuation and language.
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/png
404
ShowHideContent-Type: application/json
{
"errors": [
{
"message": "Resource not found",
"type": "API_Exception_NotFoundException",
}
]
}
This endpoint is used to download the neighbourhood singles image for the given valuation and language.
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/png
404
ShowHideContent-Type: application/json
{
"errors": [
{
"message": "Resource not found",
"type": "API_Exception_NotFoundException",
}
]
}
This endpoint is used to download the neighbourhood population age image for the given valuation and language.
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/png
404
ShowHideContent-Type: application/json
{
"errors": [
{
"message": "Resource not found",
"type": "API_Exception_NotFoundException",
}
]
}
This endpoint is used to download the neighbourhood education image for the given valuation and language.
Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
200
ShowHideContent-Type: application/png
404
ShowHideContent-Type: application/json
{
"errors": [
{
"message": "Resource not found",
"type": "API_Exception_NotFoundException",
}
]
}
COUNTRY
ADMIN1
ADMIN2
PROVINCE
LOCALITY
POSTALCODE
SUBLOCALITY
DISTRICT
STREET
ADDRESS
INTRODUCTION_PROPERTY_LOCATION
Realo Estimate ranges.
INTRODUCTION_ESTIMATE_RANGE
Realo Estimate ranges.
INTRODUCTION_REALO_SALE_ESTIMATE
Realo Sale Estimate.
INTRODUCTION_REALO_RENT_ESTIMATE
Realo Rent Estimate.
INTRODUCTION_EXPERT_SALE_ESTIMATE
Own sale estimate.
INTRODUCTION_EXPERT_RENT_ESTIMATE
Own rent estimate.
ANALYTICAL_ESTIMATE
Analytical estimate.
PROPERTY_FEATURES_GENERAL
General property features.
PROPERTY_FEATURES_PICTURES
Property pictures.
MARKET_INSIGHTS_GENERAL
General market insights.
MARKET_INSIGHTS_BEDROOMS
Market insights: number of bedrooms.
MARKET_INSIGHTS_ROOMS
Market insights: number of rooms.
MARKET_INSIGHTS_HABITABLE_AREA
Market insights: habitable area.
MARKET_INSIGHTS_ASKING_PRICES
Market insights: asking prices.
MARKET_INSIGHTS_SPEED_OF_SALE
Market insights: speed of sale.
MARKET_INSIGHTS_AVERAGE_PRICE
Market insights: average price.
MARKET_INSIGHTS_PRICE_EVOLUTION
Market insights: price evolution.
MOBILITY_SCORE_GENERAL
Mobility score.
MOBILITY_SCORE_PUBLIC_TRANSPORT
Mobility score: public transport.
MOBILITY_SCORE_NEARBY_CITIES
Mobility score: nearby cities.
MOBILITY_SCORE_SCHOOLS
Mobility score: schools.
MOBILITY_SCORE_AMENITIES
Mobility score: amenities.
TRANSACTIONS_BASIC_SALE
Automatically added sale transactions.
TRANSACTIONS_BASIC_RENT
Automatically added rent transactions.
TRANSACTIONS_OWN
(PUBLICATIONS_OWN)
Own transactions.
TRANSACTIONS_OTHER
Other transactions.
NEIGHBOURHOOD_OVERVIEW
Neighbourhood info: overview.
NEIGHBOURHOOD_DEMOGRAPHICS
Neighbourhood info: demographics.
NEIGHBOURHOOD_RANKINGS_OVERVIEW
Neighbourhood info: ranking overview.
NEIGHBOURHOOD_RANKINGS
Neighbourhood info: rankings.
PRICE_HISTORY
Price history.
INTRODUCTION_VIVIUM_SALE_ESTIMATE
Vivium Sale Estimate.
INTRODUCTION_VIVIUM_RENT_ESTIMATE
Vivium Rent Estimate.
PROPERTY_FEATURES_VIVIUM
Vivium property features.
PROPERTY_FEATURES_VLABEL
Vlabel property features.
PROPERTY_FEATURES_VLABEL_VIRTUAL
Vlabel property features of the virutal parcel.
PROPERTY_FEATURES_VLABEL_PARCELS
Vlabel property features of extra parcels.
END_ESTIMATE
Realo Estimate ranges.
PUBLICATIONS_OTHER
Other publications.
COMPANY_INFO
Other publications.
PROPERTY_FEATURES_ATTACHMENTS
Property pictures.
ROUGH
An estimate based on a limited set of features, only useful for having a rough idea.
REALO
The full, detailed Realo estimate.
RECONSTRUCTION
The full, detailed Realo estimate.
HAS_FIREPLACE
Whether or not this estate has a fire place.
HAS_DOUBLE_GLASS
Whether or not this estate has double glazing.
HAS_SOLAR_PANELS
Whether or not this estate has solar panels.
HAS_DRESSING
Whether or not this estate has a dressing.
HAS_GARDEN
Whether or not a garden is present.
HAS_TERRACE
Whether or not this estate has a terrace.
IS_FITTED_FOR_PROFESSIONAL_USE
Whether or not this estate is fitted for or provides opportunities for professional use.
IS_ADAPTED_FOR_THE_DISABLED
Whether or not this estate provides access to disabled people.
IS_FURNISHED
Whether or not this estate comes with furniture.
HAS_SWIMMING_POOL
Whether or not this estate has a swimming pool.
HAS_GARAGE
Whether or not a garage is present.
HAS_ATTIC
Whether or not the building has an attic.
HAS_JACUZZI
Whether or not this estate has a jacuzzi.
HAS_SAUNA
Whether or not this estate has a sauna.
HAS_ELEVATOR
Whether or not an elevator is present in the building.
HAS_ALARM_SECURITY
Whether or not an alarm system is present.
HAS_PAVILION
Whether or not this estate has a pavilion/summer house/garden shed.
HAS_BASEMENT
Whether or not the building has a basement.
HAS_PLANNING_PERMIT
Whether or not this estate has a planning permit (“stedenbouwkundige vergunning” in Belgium).
HAS_SUBDIVISION_PERMIT
Whether or not this estate has a subdivsion permit (“verkavelingsvergunning” in Belgium).
HAS_SUMMONS_ISSUED
Whether or not this estate has summons issued (“dagvaardingen uitgebracht” in Belgium).
HAS_PREEMPTION_RIGHT
Whether or not this plot of land has pre-emption rights (“voorkooprecht” in Belgium).
IS_NEWBUILD
Whether or not this estate is classified as newbuild.
HAS_CABLE_TV
Cable TV connection or not.
HAS_SEWERAGE
sewerage available.
HAS_GAS_CONNECTION
has a gas connection.
ACTIVE
The listing is currently active and visible on the portal.
SOLD
The listing has been sold and will not be visible on the portal.
RENTED
The listing has been rented out and will not be visible on the portal.
OFFMARKET
The listing has been taken offline for an undisclosed reason.
UNPUBLISHED
The listing is active, but not yet visible on the portal until the status is changed to ACTIVE. This is useful for when pictures need to be added to a listing without it being visible yet.
HIDDEN
The listing is active, but not yet visible on the portal until the status is changed to ACTIVE. This is useful for when pictures need to be added to a listing without it being visible yet.
HOUSE
APARTMENT
ROOM
INDUSTRIAL
OFFICE
BUSINESS
HOLIDAY_RESORT
LAND
PARKING
INVESTMENT_PROPERTY
MISCELLANEOUS
NEWBUILD_PROJECT
SALE
RENT
SELL_ANNUITY
HOLIDAY_RENTAL
walking-distance
(WALKING_DISTANCE)
cycling-distance
(CYCLING_DISTANCE)
driving-distance
(DRIVING_DISTANCE)
N
(NORTH)
NE
(NORTH_EAST)
E
(EAST)
SE
(SOUTH_EAST)
S
(SOUTH)
SW
(SOUTH_WEST)
W
(WEST)
NW
(NORTH_WEST)
EUR
(EURO)
USD
(US_DOLLAR)
JPY
(JAPAN_YEN)
BGN
(BULGARIAN_LEV)
CZK
(CZECH_KORUNA)
DKK
(DANISH_KRONE)
GBP
(GB_POUND)
HUF
(HUNGARIAN_FORINT)
LTL
(LITHUANIAN_LITAS)
PLN
(POLISH_ZLOTY)
RON
(ROMANIAN_LEU)
SEK
(SWEDISH_KRONE)
CHF
(SWISS_FRANC)
NOK
(NORWEGIAN_KRONE)
HRK
(CROATIAN_KUNA)
RUB
(RUSSIAN_RUBLE)
TRY
(TURKISH_LIRE)
AUD
(AUSTRALIAN_DOLLAR)
BRL
(BRAZILIAN_REAL)
CAD
(CANADIAN_DOLLAR)
CNY
(CHINESE_YUAN)
HKD
(HONGKONG_DOLLAR)
IDR
(INDONESIAN_RUPIAH)
ILS
(ISRAELIAN_SHEKEL)
INR
(INDIAN_RUPEE)
KRW
(SOUTH_KOREAN_WON)
MXN
(MEXICAN_PESO)
MYR
(MALESIAN_RINGGIT)
NZD
(NEW_ZEALAND_DOLLAR)
PHP
(PHILIPPINE_PESO)
SGD
(SINGAPORE_DOLLAR)
THB
(THAI_BAHT)
ZAR
(SOUTH_AFRICAN_RAND)
AED
(UNITED_ARAB_EMIRATES_DIRHAM)
DETACHED
SEMI_DETACHED
TERRACED
CORNER
GAS
FUEL_OIL
ELECTRICAL
CONVECTORS
WOOD_FUEL
SOLAR
COAL
HEAT_PUMP
PELLET_FUEL
NONE
GEOTHERMAL
HOT_AIR
AVAILABLE_CONFORM
After inspection, the electricity was deemed conform the current regulations.
AVAILABLE_NONCONFORM
After inspection, the electricity was deemed non-conform the current regulations.
EFFECTIVE_FLOOD_PRONE_AREA
An area that has recently had a flooding or where it is demonstrable that this happens at least once every 100 years.
POSSIBLE_FLOOD_PRONE_AREA
An area where no recent floodings has occurred. In extreme weather conditions, it is however possible that a flooding exists.
NOT_A_FLOOD_PRONE_AREA
Not a flood prone area.
DELINEATED_FLOOD_PRONE_AREA
An area that is delineated floodprone (“afgebakend overstromingsgebied” in Belgium).
DELINEATED_RIPARIAN_ZONE
An area that is delineated riparian (“afgebakende oeverzone” in Belgium).
BE
(BELGIUM)
FR
(FRANCE)
DE
(GERMANY)
ES
(SPAIN)
PT
(PORTUGAL)
IT
(ITALY)
AT
(AUSTRIA)
CH
(SWITZERLAND)
NL
(NETHERLANDS)
GB
(UNITED_KINGDOM)
LU
(LUXEMBOURG)
AR
(ARGENTINA)
MC
(MONACO)
TN
(TUNISIA)
US
(UNITED_STATES)
HR
(CROATIA)
MK
(MACEDONIA)
CV
(CAPE_VERDE)
GM
(GAMBIA)
TR
(TURKEY)
MA
(MOROCCO)
AF
(AFGHANISTAN)
AX
(ÅLAND_ISLANDS)
AL
(ALBANIA)
DZ
(ALGERIA)
AS
(AMERICAN_SAMOA)
AD
(ANDORRA)
AO
(ANGOLA)
AI
(ANGUILLA)
AQ
(ANTARCTICA)
AG
(ANTIGUA_AND_BARBUDA)
AM
(ARMENIA)
AW
(ARUBA)
AU
(AUSTRALIA)
AZ
(AZERBAIJAN)
BS
(BAHAMAS)
BH
(BAHRAIN)
BD
(BANGLADESH)
BB
(BARBADOS)
BY
(BELARUS)
BZ
(BELIZE)
BJ
(BENIN)
BM
(BERMUDA)
BT
(BHUTAN)
BO
(BOLIVIA)
BQ
(BONAIRE)
BA
(BOSNIA_AND_HERZEGOVINA)
BW
(BOTSWANA)
BV
(BOUVET_ISLAND)
BR
(BRAZIL)
IO
(BRITISH_INDIAN_OCEAN_TERRITORY)
BN
(BRUNEI_DARUSSALAM)
BG
(BULGARIA)
BF
(BURKINA_FASO)
BI
(BURUNDI)
KH
(CAMBODIA)
CM
(CAMEROON)
CA
(CANADA)
KY
(CAYMAN_ISLANDS)
CF
(CENTRAL_AFRICAN_REPUBLIC)
TD
(CHAD)
CL
(CHILE)
CN
(CHINA)
CX
(CHRISTMAS_ISLAND)
CC
(COCOS_ISLANDS)
CO
(COLOMBIA)
KM
(COMOROS)
CG
(CONGO)
CD
(CONGO_DEMOCRATIC_REPUBLIC)
CK
(COOK_ISLANDS)
CR
(COSTA_RICA)
CI
(CÔTE_D_IVOIRE)
CU
(CUBA)
CW
(CURAÇAO)
CY
(CYPRUS)
CZ
(CZECH_REPUBLIC)
DK
(DENMARK)
DJ
(DJIBOUTI)
DM
(DOMINICA)
DO
(DOMINICAN_REPUBLIC)
EC
(ECUADOR)
EG
(EGYPT)
SV
(EL_SALVADOR)
GQ
(EQUATORIAL_GUINEA)
ER
(ERITREA)
EE
(ESTONIA)
ET
(ETHIOPIA)
FK
(FALKLAND_ISLANDS)
FO
(FAROE_ISLANDS)
FJ
(FIJI)
FI
(FINLAND)
GF
(FRENCH_GUIANA)
PF
(FRENCH_POLYNESIA)
TF
(FRENCH_SOUTHERN_TERRITORIES)
GA
(GABON)
GE
(GEORGIA)
GH
(GHANA)
GI
(GIBRALTAR)
GR
(GREECE)
GL
(GREENLAND)
GD
(GRENADA)
GP
(GUADELOUPE)
GU
(GUAM)
GT
(GUATEMALA)
GG
(GUERNSEY)
GN
(GUINEA)
GW
(GUINEA_BISSAU)
GY
(GUYANA)
HT
(HAITI)
HM
(HEARD_ISLAND_AND_MCDONALD_ISLANDS)
VA
(VATICAN_CITY)
HN
(HONDURAS)
HK
(HONG_KONG)
HU
(HUNGARY)
IS
(ICELAND)
IN
(INDIA)
ID
(INDONESIA)
IR
(IRAN)
IQ
(IRAQ)
IE
(IRELAND)
IM
(ISLE_OF_MAN)
IL
(ISRAEL)
JM
(JAMAICA)
JP
(JAPAN)
JE
(JERSEY)
JO
(JORDAN)
KZ
(KAZAKHSTAN)
KE
(KENYA)
KI
(KIRIBATI)
KP
(KOREA_DEMOCRATIC_PEOPLE_REPUBLIC)
KR
(KOREA_REPUBLIC)
KW
(KUWAIT)
KG
(KYRGYZSTAN)
LA
(LAO)
LV
(LATVIA)
LB
(LEBANON)
LS
(LESOTHO)
LR
(LIBERIA)
LY
(LIBYA)
LI
(LIECHTENSTEIN)
LT
(LITHUANIA)
MO
(MACAO)
MG
(MADAGASCAR)
MW
(MALAWI)
MY
(MALAYSIA)
MV
(MALDIVES)
ML
(MALI)
MT
(MALTA)
MH
(MARSHALL_ISLANDS)
MQ
(MARTINIQUE)
MR
(MAURITANIA)
MU
(MAURITIUS)
YT
(MAYOTTE)
MX
(MEXICO)
FM
(MICRONESIA)
MD
(MOLDOVA)
MN
(MONGOLIA)
ME
(MONTENEGRO)
MS
(MONTSERRAT)
MZ
(MOZAMBIQUE)
MM
(MYANMAR)
NA
(NAMIBIA)
NR
(NAURU)
NP
(NEPAL)
NC
(NEW_CALEDONIA)
NZ
(NEW_ZEALAND)
NI
(NICARAGUA)
NE
(NIGER)
NG
(NIGERIA)
NU
(NIUE)
NF
(NORFOLK_ISLAND)
MP
(NORTHERN_MARIANA_ISLANDS)
NO
(NORWAY)
OM
(OMAN)
PK
(PAKISTAN)
PW
(PALAU)
PS
(PALESTINE)
PA
(PANAMA)
PG
(PAPUA_NEW_GUINEA)
PY
(PARAGUAY)
PE
(PERU)
PH
(PHILIPPINES)
PN
(PITCAIRN)
PL
(POLAND)
PR
(PUERTO_RICO)
QA
(QATAR)
RE
(RÉUNION)
RO
(ROMANIA)
RU
(RUSSIAN_FEDERATION)
RW
(RWANDA)
BL
(SAINT_BARTHÉLEMY)
SH
(SAINT_HELENA)
KN
(SAINT_KITTS_AND_NEVIS)
LC
(SAINT_LUCIA)
MF
(SAINT_MARTIN)
PM
(SAINT_PIERRE_AND_MIQUELON)
VC
(SAINT_VINCENT_AND_THE_GRENADINES)
WS
(SAMOA)
SM
(SAN_MARINO)
ST
(SAO_TOME_AND_PRINCIPE)
SA
(SAUDI_ARABIA)
SN
(SENEGAL)
RS
(SERBIA)
SC
(SEYCHELLES)
SL
(SIERRA_LEONE)
SG
(SINGAPORE)
SX
(SINT_MAARTEN)
SK
(SLOVAKIA)
SI
(SLOVENIA)
SB
(SOLOMON_ISLANDS)
SO
(SOMALIA)
ZA
(SOUTH_AFRICA)
GS
(SOUTH_GEORGIA_AND_THE_SOUTH_SANDWICH_ISLANDS)
SS
(SOUTH_SUDAN)
LK
(SRI_LANKA)
SD
(SUDAN)
SR
(SURINAME)
SJ
(SVALBARD_AND_JAN_MAYEN)
SZ
(SWAZILAND)
SE
(SWEDEN)
SY
(SYRIAN_ARAB_REPUBLIC)
TW
(TAIWAN)
TJ
(TAJIKISTAN)
TZ
(TANZANIA)
TH
(THAILAND)
TL
(TIMOR_LESTE)
TG
(TOGO)
TK
(TOKELAU)
TO
(TONGA)
TT
(TRINIDAD_AND_TOBAGO)
TM
(TURKMENISTAN)
TC
(TURKS_AND_CAICOS_ISLANDS)
TV
(TUVALU)
UG
(UGANDA)
UA
(UKRAINE)
AE
(UNITED_ARAB_EMIRATES)
UM
(UNITED_STATES_MINOR_OUTLYING_ISLANDS)
UY
(URUGUAY)
UZ
(UZBEKISTAN)
VU
(VANUATU)
VE
(VENEZUELA)
VN
(VIETNAM)
VG
(VIRGIN_ISLANDS_BRITISH)
VI
(VIRGIN_ISLANDS_US)
WF
(WALLIS_AND_FUTUNA)
EH
(WESTERN_SAHARA)
YE
(YEMEN)
ZM
(ZAMBIA)
ZW
(ZIMBABWE)
AB
(ABKHAZIAN)
AA
(AFAR)
AF
(AFRIKAANS)
AK
(AKAN)
SQ
(ALBANIAN)
AM
(AMHARIC)
AR
(ARABIC)
AN
(ARAGONESE)
HY
(ARMENIAN)
AS
(ASSAMESE)
AV
(AVARIC)
AY
(AYMARA)
AZ
(AZERBAIJANI)
BM
(BAMBARA)
BA
(BASHKIR)
EU
(BASQUE)
BE
(BELARUSIAN)
BN
(BENGALI)
BI
(BISLAMA)
BS
(BOSNIAN)
BR
(BRETON)
BG
(BULGARIAN)
MY
(BURMESE)
CA
(CATALAN)
CH
(CHAMORRO)
CE
(CHECHEN)
ZH
(CHINESE)
CV
(CHUVASH)
KW
(CORNISH)
CO
(CORSICAN)
CR
(CREE)
HR
(CROATIAN)
CS
(CZECH)
DA
(DANISH)
DV
(DHIVEHI)
NL
(DUTCH)
DZ
(DZONGKHA)
EN
(ENGLISH)
ET
(ESTONIAN)
EE
(EWE)
FO
(FAROESE)
FJ
(FIJIAN)
FI
(FINNISH)
FR
(FRENCH)
FY
(FRISIAN)
FF
(FULAH)
GL
(GALICIAN)
LG
(GANDA)
KA
(GEORGIAN)
DE
(GERMAN)
EL
(GREEK)
GN
(GUARANI)
GU
(GUJARATI)
HT
(HAITIAN)
HA
(HAUSA)
HE
(HEBREW)
HZ
(HERERO)
HI
(HINDI)
HO
(HIRI_MOTU)
HU
(HUNGARIAN)
IS
(ICELANDIC)
IG
(IGBO)
ID
(INDONESIAN)
IU
(INUKTITUT)
IK
(INUPIAQ)
GA
(IRISH)
IT
(ITALIAN)
JA
(JAPANESE)
JV
(JAVANESE)
KL
(KALAALLISUT)
KN
(KANNADA)
KR
(KANURI)
KS
(KASHMIRI)
KK
(KAZAKH)
KM
(KHMER)
KI
(KIKUYU)
RW
(KINYARWANDA)
KY
(KIRGHIZ)
KV
(KOMI)
KG
(KONGO)
KO
(KOREAN)
KJ
(KUANYAMA)
KU
(KURDISH)
LO
(LAO)
LV
(LATVIAN)
LI
(LIMBURGAN)
LN
(LINGALA)
LT
(LITHUANIAN)
LU
(LUBA_KATANGA)
LB
(LUXEMBOURGISH)
MK
(MACEDONIAN)
MG
(MALAGASY)
MS
(MALAY)
ML
(MALAYALAM)
MT
(MALTESE)
GV
(MANX)
MI
(MAORI)
MR
(MARATHI)
MH
(MARSHALLESE)
MN
(MONGOLIAN)
NA
(NAURU)
NV
(NAVAJO)
NG
(NDONGA)
NE
(NEPALI)
SE
(NORTHERN_SAMI)
ND
(NORTH_NDEBELE)
NO
(NORWEGIAN)
NB
(NORWEGIAN_BOKMÅL)
NN
(NORWEGIAN_NYNORSK)
NY
(NYANJA)
OC
(OCCITAN)
OJ
(OJIBWA)
OR
(ORIYA)
OM
(OROMO)
OS
(OSSETIAN)
PA
(PANJABI)
FA
(PERSIAN)
PL
(POLISH)
PT
(PORTUGUESE)
PS
(PUSHTO)
QU
(QUECHUA)
RO
(ROMANIAN)
RM
(ROMANSH)
RN
(RUNDI)
RU
(RUSSIAN)
SM
(SAMOAN)
SG
(SANGO)
SC
(SARDINIAN)
GD
(SCOTTISH_GAELIC)
SR
(SERBIAN)
SN
(SHONA)
II
(SICHUAN_YI)
SD
(SINDHI)
SI
(SINHALA)
SK
(SLOVAK)
SL
(SLOVENIAN)
SO
(SOMALI)
ST
(SOUTHERN_SOTHO)
NR
(SOUTH_NDEBELE)
ES
(SPANISH)
SU
(SUNDANESE)
SW
(SWAHILI)
SS
(SWATI)
SV
(SWEDISH)
TL
(TAGALOG)
TY
(TAHITIAN)
TG
(TAJIK)
TA
(TAMIL)
TT
(TATAR)
TE
(TELUGU)
TH
(THAI)
BO
(TIBETAN)
TI
(TIGRINYA)
TO
(TONGA)
TS
(TSONGA)
TN
(TSWANA)
TR
(TURKISH)
TK
(TURKMEN)
TW
(TWI)
UG
(UIGHUR)
UK
(UKRAINIAN)
UR
(URDU)
UZ
(UZBEK)
VE
(VENDA)
VI
(VIETNAMESE)
WA
(WALLOON)
CY
(WELSH)
WO
(WOLOF)
XH
(XHOSA)
YI
(YIDDISH)
YO
(YORUBA)
ZA
(ZHUANG)
ZU
(ZULU)
MANSION
VILLA
CHALET
BUNGALOW
HOUSEBOAT
CARAVAN
FINCA
FARM
CASTLE
DUPLEX
TRIPLEX
PENTHOUSE
STUDIO
LOFT
SERVICE_FLAT
STORAGE
PARKING
GARAGE_BOX
BUILDING_PLOT
INDUSTRIAL_PLOT
FARM_LAND
FOREST_LAND
ROOM
HOUSE
APARTMENT
COTTAGE
RECREATIONAL_LAND
OFFICE
STORE
INDUSTRIAL
BUSINESS
HOLIDAY_RESORT
LAND
INVESTMENT_PROPERTY
MISCELLANEOUS
NEWBUILD_PROJECT
GROUND_FLOOR
OFFICES
APARTMENTS
TOWN_HOUSE
COMMERCIAL_ESTATE
HORECA
EXCEPTIONAL_PROPERTY
MANOR_HOUSE
HOUSES
WAREHOUSE
ORCHARD
MEADOW
FIELDS
PAVILION
GARDEN_DISTRICT_HOUSE
FERMETTE
HOUSE_WITH_UNDERGROUND_ROOMS
RELIGION_HOUSE
MIXED_COMMERCIAL
MIXED_RESIDENTIAL
BELETAGE
PART
STABLE
NEWBUILD_PROJECT_PLOT
HOMESTEAD
STORAGE_ROOM
BUILDING_LAND
GARDEN_LAND
ROAD
COUNTRY_HOUSE
GARAGE
GREENHOUSE
AGRICULTURAL_LAND
WATER
PUBLIC_SERVICES
STUDENT_HOUSING
HOSTEL
GREEN_ZONE
MULTI_PURPOSE
GARAGE_BOX_OUTSIDE
GARAGE_BOX_INSIDE
MIXED
SINGLE_FLOOR
ROOM_SHARED
MOBILE_HOME
A
Class A.
B
Class B.
C
Class C.
D
Class D.
E
Class E.
F
Class F.
G
Class G.
APLUS
Class A+.
APLUSPLUS
Class A++.
H
Class H.
I
Class I.
RESIDENTIAL
MIXED_USE
WATERBODY
RECREATIONAL
FOREST
INDUSTRIAL
ECONOMIC
AGRICULTURAL
GREENSPACE
PARK
CEMETERY
MILITARY
PUBLIC_SERVICES
PORT
SPORTS
BUFFER_ZONE
ARCHEOLOGICAL
TRANSPORTATION
EDUCATION
EXTRACTION_AREA
DUMPING_SITE
HEALTH_CARE
PARKING
UNASSIGNED
MISCELLANEOUS
AROUND_MEDIA
MATTERPORT
ROUNDME
YOUTUBE
VIMEO
FACEBOOK
QTS_MEDIA
PIXEET
NODALVIEW
A
Class A.
B
Class B.
C
Class C.
D
Class D.
E
Class E.
F
Class F.
G
Class G.
APLUS
Class A+.
APLUSPLUS
Class A++.
H
Class H.
I
Class I.
Generated by aglio on 19 Feb 2025