Back to top

This documentation consist of 3 different products:

Next 

Realo API 

Client Libraries 

We have official client libraries available for the following languages:

You can also used community based unofficial client libraries available for the following languages:

  • C# - special thanks to Stefaan De Vylder

These implement authentication, HTTP communication and JSON serialization and thus make it easier to get started. We advise to use the officially supported libraries.

Authentication 

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.

HTTP Methods

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

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.

Requests 

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:

  • Accept-Language: used for localization; eg. if nl-BE is passed, all addresses will be returned in dutch

Pagination 

Endpoint 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.

Rate limits

Our API will return a 429 status code when your API key has reached the rate limit.

Testing 

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.

Next  Previous

Realo XML Feed 

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.

Format 

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.

Example 

An example XML can be found here.

Next  Previous

Realo Widget 

NOTE: this only applies to customers using our widget, this feature is not activated by default.

Embedding 

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.

Customization 

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

    • type: integer
    • default: not set
    • If specified, fixes the width of the widget to the amount of pixels defined by this property.
  • height

    • type: integer
    • default: not set
    • If specified, fixes the height of the widget to the amount of pixels defined by this property.
  • language

    • type: string
    • possible values: en, nl, fr, es (availability depends per {countryIso})
    • default: not set
    • If specified, overrides the language specified in the URL.
  • border_style

    • type: string
    • possible values: rounded, squared, none
    • default: rounded
    • Defines the visual styling of the border surrounding the widget.
  • company.name

    • type: string
    • default: not set
    • If specified, overrides the company name shown in the report.
    • NOTE: this feature is not activated by default, contact your account manager for more details.
  • company.address

    • type: string
    • default: not set
    • If specified, overrides the company address show in the report.
    • NOTE: this feature is not activated by default, contact your account manager for more details.
  • customParameters

    • type: map[string,string]
    • default: not set
    • If specified, these parameters will be passed back to the callback being invoked when the report gets generated.
    • NOTE: this feature is not activated by default, contact your account manager for more details.

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.

Next  Previous

Listings 

Listing properties

  • 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.

      • locality (string, optional)

        Locality name.

      • subLocality (string, read-only)

        Sub-locality name.

      • district (string, read-only)

        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.

    • locality (string, optional)

      Locality name.

    • subLocality (string, read-only)

      Sub-locality name.

    • district (string, read-only)

      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.

  • 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.

Listings 

Get all listings
/agencies/{agency}/listings

This endpoint returns all active listings owned by the parent agency resource.

  • Parameters
  • agency
    number (required) Example: 1

    ID of the parent agency

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    [
      {
        "id": 26,
        "type": "APARTMENT",
        "secondaryType": null,
        "buildingCondition": null,
        "way": "RENT",
        "status": "ACTIVE",
        "featured": true,
        "listedAt": "2016-01-01T00:00:00+00:00",
        "updatedAt": "2024-04-26T08:20:29+00:00",
        "availableAt": "2016-02-01T00:00:00+00:00",
        "description": {
          "NL": "Necessitatibus ab illo eum eligendi eum soluta. Adipisci nihil odio qui temporibus odio. Tenetur doloremque sit quas pariatur iste qui velit.",
          "FR": "Delectus ratione rerum eligendi voluptas provident. Aliquid maiores expedita non ipsum. Occaecati nihil non fuga."
        },
        "title": null,
        "agency": {
          "id": 976287598,
          "address": {
            "id": 5974822,
            "type": "ADDRESS",
            "countryIso": "BE",
            "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",
          "locality": "Gent",
          "subLocality": "Gent",
          "district": "Sint-Jacobs",
          "postalCode": "9000",
          "street": "Sint-Jacobsnieuwstraat",
          "number": "17",
          "box": null,
          "text": null,
          "longitude": 3.7291261356306,
          "latitude": 51.055230260881,
          "coordinatesAccuracy": null
        },
        "addressVisible": false,
        "price": 3537.03,
        "currency": "EUR",
        "priceVisible": false,
        "vatIncluded": null,
        "monthlyFixedCosts": 2307.11,
        "floor": 5,
        "numberOfFloors": 9,
        "habitableArea": 989.45,
        "landArea": 31832690.08,
        "gardenArea": null,
        "garageArea": null,
        "terraceArea": null,
        "basementArea": null,
        "balconyArea": null,
        "numberOfBedrooms": 7,
        "numberOfBathrooms": 5,
        "numberOfToilets": 7,
        "numberOfGarages": null,
        "numberOfParkingSpaces": 4,
        "buildYear": 1685,
        "renovationYear": 1987,
        "cadastralIncome": 691127.05,
        "energyConsumption": 290446900.11,
        "energyConsumptionYearly": 71791437.13,
        "energyCertificateNumber": "679a3f64-2332-37a9-9d06-34febf3b172a",
        "energyClassification": null,
        "eLevel": null,
        "kLevel": null,
        "co2Emissions": 369761811.07,
        "facadeWidth": 1837.69,
        "detachment": "CORNER",
        "heatingType": "GEOTHERMAL",
        "gardenOrientation": "SE",
        "electricityInspectionReportType": "NOT_DISCLOSED",
        "floodProneLocation": "NOT_A_FLOOD_PRONE_AREA",
        "delineatedArea": "DELINEATED_FLOOD_PRONE_AREA",
        "flags": {
          "HAS_RADIATORS": true,
          "HAS_SMOKE_EXTRACTOR": true,
          "HAS_RAIN_WATER_RECUPERATION": true,
          "HAS_DRESSING": false
        },
        "pictures": [
          {
            "id": 52,
            "url": "https://lorempixel.com/640/480/?41355",
            "thumbnail": "https://lorempixel.com/640/480/?65819",
            "md5Hash": "d15f2816db0b81f2f556e1fa792660f9",
            "order": 0
          },
          {
            "id": 93,
            "url": "https://lorempixel.com/640/480/?36216",
            "thumbnail": "https://lorempixel.com/640/480/?59341",
            "md5Hash": "74c973cbf4de302bf3d14785ac2f1aae",
            "order": 1
          },
          {
            "id": 49,
            "url": "https://lorempixel.com/640/480/?21930",
            "thumbnail": "https://lorempixel.com/640/480/?35848",
            "md5Hash": "76dd771a383b05f1b8548996a8292ac3",
            "order": 2
          }
        ],
        "virtualTours": null,
        "canonicalUrls": {
          "NL": "https://www.realo.be/nl/sint-jacobsnieuwstraat-17-9000-gent/4366163?l=26",
          "FR": "https://www.realo.fr/nl/sint-jacobsnieuwstraat-17-9000-gent/4366163?l=26"
        },
        "agencyUrl": "https://jacobs.com/in-distinctio-nam-molestiae-nostrum.html",
        "agencyReference": 263866,
        "contactEmail": null,
        "contactPhone": null,
        "metadata": {
          "id": 98402
        },
        "isExternalListing": null,
        "listingContactId": null,
        "sourceId": null,
        "projectId": null
      }
    ]
Create a new listing
/agencies/{agency}/listings

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.

  • Parameters
  • agency
    number (required) Example: 1

    ID of the parent agency

  • Request
  • Headers
    Content-Type: application/json
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
    Body
    {
      "type": "APARTMENT",
      "secondaryType": null,
      "buildingCondition": null,
      "way": "RENT",
      "status": "ACTIVE",
      "listedAt": "2016-01-01T00:00:00+00:00",
      "updatedAt": "2024-04-26T08:20:29+00:00",
      "availableAt": "2016-02-01T00:00:00+00:00",
      "description": {
        "NL": "Necessitatibus ab illo eum eligendi eum soluta. Adipisci nihil odio qui temporibus odio. Tenetur doloremque sit quas pariatur iste qui velit.",
        "FR": "Delectus ratione rerum eligendi voluptas provident. Aliquid maiores expedita non ipsum. Occaecati nihil non fuga."
      },
      "title": null,
      "address": {
        "id": 4366163,
        "countryIso": "BE",
        "locality": "Gent",
        "postalCode": "9000",
        "street": "Sint-Jacobsnieuwstraat",
        "number": "17",
        "box": null,
        "text": null,
        "longitude": 3.7291261356306,
        "latitude": 51.055230260881,
        "coordinatesAccuracy": null
      },
      "addressVisible": false,
      "price": 3537.03,
      "currency": "EUR",
      "priceVisible": false,
      "vatIncluded": null,
      "monthlyFixedCosts": 2307.11,
      "floor": 5,
      "numberOfFloors": 9,
      "habitableArea": 989.45,
      "landArea": 31832690.08,
      "gardenArea": null,
      "garageArea": null,
      "terraceArea": null,
      "basementArea": null,
      "balconyArea": null,
      "numberOfBedrooms": 7,
      "numberOfBathrooms": 5,
      "numberOfToilets": 7,
      "numberOfGarages": null,
      "numberOfParkingSpaces": 4,
      "buildYear": 1685,
      "renovationYear": 1987,
      "cadastralIncome": 691127.05,
      "energyConsumption": 290446900.11,
      "energyConsumptionYearly": 71791437.13,
      "energyCertificateNumber": "679a3f64-2332-37a9-9d06-34febf3b172a",
      "energyClassification": null,
      "eLevel": null,
      "kLevel": null,
      "co2Emissions": 369761811.07,
      "facadeWidth": 1837.69,
      "detachment": "CORNER",
      "heatingType": "GEOTHERMAL",
      "gardenOrientation": "SE",
      "electricityInspectionReportType": "NOT_DISCLOSED",
      "floodProneLocation": "NOT_A_FLOOD_PRONE_AREA",
      "delineatedArea": "DELINEATED_FLOOD_PRONE_AREA",
      "flags": {
        "HAS_RADIATORS": true,
        "HAS_SMOKE_EXTRACTOR": true,
        "HAS_RAIN_WATER_RECUPERATION": true,
        "HAS_DRESSING": false
      },
      "virtualTours": null,
      "agencyUrl": "https://jacobs.com/in-distinctio-nam-molestiae-nostrum.html",
      "agencyReference": 263866,
      "metadata": {
        "id": 98402
      },
      "sourceId": null,
      "projectId": null
    }
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "data": {
        "id": 1
      }
    }

Listing 

Retrieve a listing
/listings/{id}

This endpoint is used to retrieve single listings.

  • Parameters
  • id
    number (required) Example: 1

    ID of the listing

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "id": 26,
      "type": "APARTMENT",
      "secondaryType": null,
      "buildingCondition": null,
      "way": "RENT",
      "status": "ACTIVE",
      "featured": true,
      "listedAt": "2016-01-01T00:00:00+00:00",
      "updatedAt": "2024-04-26T08:20:29+00:00",
      "availableAt": "2016-02-01T00:00:00+00:00",
      "description": {
        "NL": "Necessitatibus ab illo eum eligendi eum soluta. Adipisci nihil odio qui temporibus odio. Tenetur doloremque sit quas pariatur iste qui velit.",
        "FR": "Delectus ratione rerum eligendi voluptas provident. Aliquid maiores expedita non ipsum. Occaecati nihil non fuga."
      },
      "title": null,
      "agency": {
        "id": 976287598,
        "address": {
          "id": 5974822,
          "type": "ADDRESS",
          "countryIso": "BE",
          "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",
        "locality": "Gent",
        "subLocality": "Gent",
        "district": "Sint-Jacobs",
        "postalCode": "9000",
        "street": "Sint-Jacobsnieuwstraat",
        "number": "17",
        "box": null,
        "text": null,
        "longitude": 3.7291261356306,
        "latitude": 51.055230260881,
        "coordinatesAccuracy": null
      },
      "addressVisible": false,
      "price": 3537.03,
      "currency": "EUR",
      "priceVisible": false,
      "vatIncluded": null,
      "monthlyFixedCosts": 2307.11,
      "floor": 5,
      "numberOfFloors": 9,
      "habitableArea": 989.45,
      "landArea": 31832690.08,
      "gardenArea": null,
      "garageArea": null,
      "terraceArea": null,
      "basementArea": null,
      "balconyArea": null,
      "numberOfBedrooms": 7,
      "numberOfBathrooms": 5,
      "numberOfToilets": 7,
      "numberOfGarages": null,
      "numberOfParkingSpaces": 4,
      "buildYear": 1685,
      "renovationYear": 1987,
      "cadastralIncome": 691127.05,
      "energyConsumption": 290446900.11,
      "energyConsumptionYearly": 71791437.13,
      "energyCertificateNumber": "679a3f64-2332-37a9-9d06-34febf3b172a",
      "energyClassification": null,
      "eLevel": null,
      "kLevel": null,
      "co2Emissions": 369761811.07,
      "facadeWidth": 1837.69,
      "detachment": "CORNER",
      "heatingType": "GEOTHERMAL",
      "gardenOrientation": "SE",
      "electricityInspectionReportType": "NOT_DISCLOSED",
      "floodProneLocation": "NOT_A_FLOOD_PRONE_AREA",
      "delineatedArea": "DELINEATED_FLOOD_PRONE_AREA",
      "flags": {
        "HAS_RADIATORS": true,
        "HAS_SMOKE_EXTRACTOR": true,
        "HAS_RAIN_WATER_RECUPERATION": true,
        "HAS_DRESSING": false
      },
      "pictures": [
        {
          "id": 52,
          "url": "https://lorempixel.com/640/480/?41355",
          "thumbnail": "https://lorempixel.com/640/480/?65819",
          "md5Hash": "d15f2816db0b81f2f556e1fa792660f9",
          "order": 0
        },
        {
          "id": 93,
          "url": "https://lorempixel.com/640/480/?36216",
          "thumbnail": "https://lorempixel.com/640/480/?59341",
          "md5Hash": "74c973cbf4de302bf3d14785ac2f1aae",
          "order": 1
        },
        {
          "id": 49,
          "url": "https://lorempixel.com/640/480/?21930",
          "thumbnail": "https://lorempixel.com/640/480/?35848",
          "md5Hash": "76dd771a383b05f1b8548996a8292ac3",
          "order": 2
        }
      ],
      "virtualTours": null,
      "canonicalUrls": {
        "NL": "https://www.realo.be/nl/sint-jacobsnieuwstraat-17-9000-gent/4366163?l=26",
        "FR": "https://www.realo.fr/nl/sint-jacobsnieuwstraat-17-9000-gent/4366163?l=26"
      },
      "agencyUrl": "https://jacobs.com/in-distinctio-nam-molestiae-nostrum.html",
      "agencyReference": 263866,
      "contactEmail": null,
      "contactPhone": null,
      "metadata": {
        "id": 98402
      },
      "isExternalListing": null,
      "listingContactId": null,
      "sourceId": null,
      "projectId": null
    }
Update a listing
/listings/{id}

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.

  • Parameters
  • id
    number (required) Example: 1

    ID of the listing

  • Request
  • Headers
    Content-Type: application/json
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
    Body
    {
      "type": "APARTMENT",
      "secondaryType": null,
      "buildingCondition": null,
      "way": "RENT",
      "status": "ACTIVE",
      "listedAt": "2016-01-01T00:00:00+00:00",
      "updatedAt": "2024-04-26T08:20:29+00:00",
      "availableAt": "2016-02-01T00:00:00+00:00",
      "description": {
        "NL": "Necessitatibus ab illo eum eligendi eum soluta. Adipisci nihil odio qui temporibus odio. Tenetur doloremque sit quas pariatur iste qui velit.",
        "FR": "Delectus ratione rerum eligendi voluptas provident. Aliquid maiores expedita non ipsum. Occaecati nihil non fuga."
      },
      "title": null,
      "address": {
        "id": 4366163,
        "countryIso": "BE",
        "locality": "Gent",
        "postalCode": "9000",
        "street": "Sint-Jacobsnieuwstraat",
        "number": "17",
        "box": null,
        "text": null,
        "longitude": 3.7291261356306,
        "latitude": 51.055230260881,
        "coordinatesAccuracy": null
      },
      "addressVisible": false,
      "price": 3537.03,
      "currency": "EUR",
      "priceVisible": false,
      "vatIncluded": null,
      "monthlyFixedCosts": 2307.11,
      "floor": 5,
      "numberOfFloors": 9,
      "habitableArea": 989.45,
      "landArea": 31832690.08,
      "gardenArea": null,
      "garageArea": null,
      "terraceArea": null,
      "basementArea": null,
      "balconyArea": null,
      "numberOfBedrooms": 7,
      "numberOfBathrooms": 5,
      "numberOfToilets": 7,
      "numberOfGarages": null,
      "numberOfParkingSpaces": 4,
      "buildYear": 1685,
      "renovationYear": 1987,
      "cadastralIncome": 691127.05,
      "energyConsumption": 290446900.11,
      "energyConsumptionYearly": 71791437.13,
      "energyCertificateNumber": "679a3f64-2332-37a9-9d06-34febf3b172a",
      "energyClassification": null,
      "eLevel": null,
      "kLevel": null,
      "co2Emissions": 369761811.07,
      "facadeWidth": 1837.69,
      "detachment": "CORNER",
      "heatingType": "GEOTHERMAL",
      "gardenOrientation": "SE",
      "electricityInspectionReportType": "NOT_DISCLOSED",
      "floodProneLocation": "NOT_A_FLOOD_PRONE_AREA",
      "delineatedArea": "DELINEATED_FLOOD_PRONE_AREA",
      "flags": {
        "HAS_RADIATORS": true,
        "HAS_SMOKE_EXTRACTOR": true,
        "HAS_RAIN_WATER_RECUPERATION": true,
        "HAS_DRESSING": false
      },
      "virtualTours": null,
      "agencyUrl": "https://jacobs.com/in-distinctio-nam-molestiae-nostrum.html",
      "agencyReference": 263866,
      "metadata": {
        "id": 98402
      },
      "sourceId": null,
      "projectId": null
    }
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "success": true
    }
Cancel a listing
/listings/{id}

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.

  • Parameters
  • id
    number (required) Example: 1

    ID of the listing

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "success": true
    }

Pictures 

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

Picture properties

  • 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.

Add one picture
/listings/{id}/pictures

Single picture upload endpoint.

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
    Body
    {
      "url": "https://realocdn.com/image/1/BE-master_listing_f47a85_f47a856ec8f4004950834a97a1c77a52.jpg/715x480/1920x1080/2/f799",
      "order": 0
    }
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "data": {
        "id": 23895218
      }
    }
Add multiple pictures
/listings/{id}/pictures

Batch picture upload endpoint.

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
    Body
    [
      {
        "url": "https://realocdn.com/image/1/BE-master_listing_f47a85_f47a856ec8f4004950834a97a1c77a52.jpg/715x480/1920x1080/2/f799",
        "order": 0
      },
      {
        "url": "https://realocdn.com/image/1/BE-master_listing_34ca0b_34ca0bb747431242766a17cd7057572c.jpg/715x480/1920x1080/2/b6d2",
        "order": 1
      },
      {
        "url": "https://realocdn.com/image/1/BE-master_listing_16a692_16a692112b4715dfbfee7152429c5b2a.jpg/715x480/1920x1080/2/af2f",
        "order": 2
      }
    ]
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "data": {
        "ids": [
          23895218,
          23895219,
          23895220
        ]
      }
    }

Picture 

Moving a picture
/listings/{id}/pictures/{id}

To move a picture, use this endpoint to update the order of a specific picture.

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "success": true
    }
Delete a picture
/listings/{id}/pictures/{id}

Use this endpoint to permanently remove a picture from a listing.

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "success": true
    }

Publishing 

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 a listing
/listings/{id}/publish

Publish an unpublished listing.

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "success": true
    }
Next  Previous

Projects 

Project properties

  • 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.

      • locality (string, optional)

        Locality name.

      • subLocality (string, read-only)

        Sub-locality name.

      • district (string, read-only)

        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.

    • locality (string, optional)

      Locality name.

    • subLocality (string, read-only)

      Sub-locality name.

    • district (string, read-only)

      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.

  • 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).

Projects 

Get all projects
/agencies/{agency}/projects

This endpoint returns all active projects owned by the parent agency resource.

  • Parameters
  • agency
    number (required) Example: 1

    ID of the agency

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    [
      {
        "id": 46,
        "secondaryType": null,
        "way": null,
        "status": "ACTIVE",
        "price": null,
        "currency": null,
        "priceVisible": null,
        "monthlyFixedCosts": null,
        "agency": {
          "id": 71,
          "address": {
            "id": 94,
            "type": "ADDRESS",
            "countryIso": "BE",
            "locality": "Oost-Vlaanderen",
            "subLocality": "Lommel",
            "district": "Chiny",
            "postalCode": "6717",
            "street": "Vermeulenhof",
            "number": "6",
            "box": "10",
            "text": null,
            "longitude": -54.049662,
            "latitude": 51.550834,
            "coordinatesAccuracy": null
          },
          "name": "Simon",
          "telephone": "+498976993102",
          "mobile": null,
          "email": "dylan.wouters@moens.be",
          "buyerLeadEmail": null,
          "renterLeadEmail": null,
          "sellerLeadEmail": null,
          "letterLeadEmail": null,
          "websiteUrl": "http://www.saidi.com/ratione-corporis-vel-a-sint-debitis-perferendis-aut",
          "language": "BE",
          "sourceId": null,
          "code": null,
          "feedUrl": null,
          "feedType": null,
          "avatarUrl": null
        },
        "address": {
          "id": 4366163,
          "type": "ADDRESS",
          "countryIso": "BE",
          "locality": "Gent",
          "subLocality": "Gent",
          "district": "Sint-Jacobs",
          "postalCode": "9000",
          "street": "Sint-Jacobsnieuwstraat",
          "number": "17",
          "box": null,
          "text": null,
          "longitude": 3.7291261356306,
          "latitude": 51.055230260881,
          "coordinatesAccuracy": null
        },
        "addressVisible": null,
        "name": "Eos quae omnis at.",
        "listedAt": "2016-01-01T00:00:00+00:00",
        "updatedAt": "2024-04-26T08:20:29+00:00",
        "availableAt": null,
        "description": {
          "NL": "Placeat sed debitis fugiat quas sapiente eum molestiae. Quia est eveniet corporis voluptas beatae. Corporis et debitis ipsam nesciunt. Non accusantium id enim facere maxime dolores ipsum.",
          "FR": "Culpa enim ad dolores quia et consectetur natus. Aut quis dolor odio libero. Deleniti et qui beatae saepe nihil similique asperiores. Eius nihil natus et."
        },
        "title": null,
        "numberOfUnits": 7,
        "pictures": [
          {
            "id": 65,
            "url": "https://lorempixel.com/640/480/?10168",
            "thumbnail": "https://lorempixel.com/640/480/?97881",
            "md5Hash": "9ef23ce0282cef1c141d9f2ddf364620",
            "order": 0
          },
          {
            "id": 25,
            "url": "https://lorempixel.com/640/480/?70881",
            "thumbnail": "https://lorempixel.com/640/480/?96211",
            "md5Hash": "c8235dcd084c3d7450537c3eae49b418",
            "order": 1
          },
          {
            "id": 24,
            "url": "https://lorempixel.com/640/480/?70024",
            "thumbnail": "https://lorempixel.com/640/480/?48654",
            "md5Hash": "4e807ec35249e96d07348350bafafd60",
            "order": 2
          }
        ],
        "agencyUrl": "https://oreilly.com/tempore-expedita-ut-repellat-deserunt.html",
        "agencyReference": 918849,
        "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
      }
    ]
Create a new project
/agencies/{agency}/projects

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.

  • Parameters
  • agency
    number (required) Example: 1

    ID of the agency

  • Request
  • Headers
    Content-Type: application/json
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
    Body
    {
      "secondaryType": null,
      "way": null,
      "status": "ACTIVE",
      "price": null,
      "currency": null,
      "priceVisible": null,
      "monthlyFixedCosts": null,
      "address": {
        "id": 4366163,
        "countryIso": "BE",
        "locality": "Gent",
        "postalCode": "9000",
        "street": "Sint-Jacobsnieuwstraat",
        "number": "17",
        "box": null,
        "text": null,
        "longitude": 3.7291261356306,
        "latitude": 51.055230260881,
        "coordinatesAccuracy": null
      },
      "addressVisible": null,
      "name": "Eos quae omnis at.",
      "listedAt": "2016-01-01T00:00:00+00:00",
      "updatedAt": "2024-04-26T08:20:29+00:00",
      "availableAt": null,
      "description": {
        "NL": "Placeat sed debitis fugiat quas sapiente eum molestiae. Quia est eveniet corporis voluptas beatae. Corporis et debitis ipsam nesciunt. Non accusantium id enim facere maxime dolores ipsum.",
        "FR": "Culpa enim ad dolores quia et consectetur natus. Aut quis dolor odio libero. Deleniti et qui beatae saepe nihil similique asperiores. Eius nihil natus et."
      },
      "title": null,
      "numberOfUnits": 7,
      "agencyUrl": "https://oreilly.com/tempore-expedita-ut-repellat-deserunt.html",
      "agencyReference": 918849,
      "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
    }
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "id": 1
    }

Project 

Retrieve a project
/projects/{id}

This endpoint is used to retrieve single projects.

  • Parameters
  • id
    number (required) Example: 1

    ID of the project

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "id": 46,
      "secondaryType": null,
      "way": null,
      "status": "ACTIVE",
      "price": null,
      "currency": null,
      "priceVisible": null,
      "monthlyFixedCosts": null,
      "agency": {
        "id": 71,
        "address": {
          "id": 94,
          "type": "ADDRESS",
          "countryIso": "BE",
          "locality": "Oost-Vlaanderen",
          "subLocality": "Lommel",
          "district": "Chiny",
          "postalCode": "6717",
          "street": "Vermeulenhof",
          "number": "6",
          "box": "10",
          "text": null,
          "longitude": -54.049662,
          "latitude": 51.550834,
          "coordinatesAccuracy": null
        },
        "name": "Simon",
        "telephone": "+498976993102",
        "mobile": null,
        "email": "dylan.wouters@moens.be",
        "buyerLeadEmail": null,
        "renterLeadEmail": null,
        "sellerLeadEmail": null,
        "letterLeadEmail": null,
        "websiteUrl": "http://www.saidi.com/ratione-corporis-vel-a-sint-debitis-perferendis-aut",
        "language": "BE",
        "sourceId": null,
        "code": null,
        "feedUrl": null,
        "feedType": null,
        "avatarUrl": null
      },
      "address": {
        "id": 4366163,
        "type": "ADDRESS",
        "countryIso": "BE",
        "locality": "Gent",
        "subLocality": "Gent",
        "district": "Sint-Jacobs",
        "postalCode": "9000",
        "street": "Sint-Jacobsnieuwstraat",
        "number": "17",
        "box": null,
        "text": null,
        "longitude": 3.7291261356306,
        "latitude": 51.055230260881,
        "coordinatesAccuracy": null
      },
      "addressVisible": null,
      "name": "Eos quae omnis at.",
      "listedAt": "2016-01-01T00:00:00+00:00",
      "updatedAt": "2024-04-26T08:20:29+00:00",
      "availableAt": null,
      "description": {
        "NL": "Placeat sed debitis fugiat quas sapiente eum molestiae. Quia est eveniet corporis voluptas beatae. Corporis et debitis ipsam nesciunt. Non accusantium id enim facere maxime dolores ipsum.",
        "FR": "Culpa enim ad dolores quia et consectetur natus. Aut quis dolor odio libero. Deleniti et qui beatae saepe nihil similique asperiores. Eius nihil natus et."
      },
      "title": null,
      "numberOfUnits": 7,
      "pictures": [
        {
          "id": 65,
          "url": "https://lorempixel.com/640/480/?10168",
          "thumbnail": "https://lorempixel.com/640/480/?97881",
          "md5Hash": "9ef23ce0282cef1c141d9f2ddf364620",
          "order": 0
        },
        {
          "id": 25,
          "url": "https://lorempixel.com/640/480/?70881",
          "thumbnail": "https://lorempixel.com/640/480/?96211",
          "md5Hash": "c8235dcd084c3d7450537c3eae49b418",
          "order": 1
        },
        {
          "id": 24,
          "url": "https://lorempixel.com/640/480/?70024",
          "thumbnail": "https://lorempixel.com/640/480/?48654",
          "md5Hash": "4e807ec35249e96d07348350bafafd60",
          "order": 2
        }
      ],
      "agencyUrl": "https://oreilly.com/tempore-expedita-ut-repellat-deserunt.html",
      "agencyReference": 918849,
      "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
    }
Update a project
/projects/{id}

This endpoint is used to update projects and supports both partial and full update requests for a project resource.

  • Parameters
  • id
    number (required) Example: 1

    ID of the project

  • Request
  • Headers
    Content-Type: application/json
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
    Body
    {
      "secondaryType": null,
      "way": null,
      "status": "ACTIVE",
      "price": null,
      "currency": null,
      "priceVisible": null,
      "monthlyFixedCosts": null,
      "address": {
        "id": 4366163,
        "countryIso": "BE",
        "locality": "Gent",
        "postalCode": "9000",
        "street": "Sint-Jacobsnieuwstraat",
        "number": "17",
        "box": null,
        "text": null,
        "longitude": 3.7291261356306,
        "latitude": 51.055230260881,
        "coordinatesAccuracy": null
      },
      "addressVisible": null,
      "name": "Eos quae omnis at.",
      "listedAt": "2016-01-01T00:00:00+00:00",
      "updatedAt": "2024-04-26T08:20:29+00:00",
      "availableAt": null,
      "description": {
        "NL": "Placeat sed debitis fugiat quas sapiente eum molestiae. Quia est eveniet corporis voluptas beatae. Corporis et debitis ipsam nesciunt. Non accusantium id enim facere maxime dolores ipsum.",
        "FR": "Culpa enim ad dolores quia et consectetur natus. Aut quis dolor odio libero. Deleniti et qui beatae saepe nihil similique asperiores. Eius nihil natus et."
      },
      "title": null,
      "numberOfUnits": 7,
      "agencyUrl": "https://oreilly.com/tempore-expedita-ut-repellat-deserunt.html",
      "agencyReference": 918849,
      "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
    }
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "success": true
    }
Cancel a project
/projects/{id}
  • Parameters
  • id
    number (required) Example: 1

    ID of the project

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "success": true
    }

Project listings 

Get all project listings
/projects/{id}/listings

This endpoint returns all active listings part of the parent project resource.

  • Parameters
  • id
    number (required) Example: 1

    ID of the parent project

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    [
      {
        "id": 26,
        "type": "APARTMENT",
        "secondaryType": null,
        "buildingCondition": null,
        "way": "RENT",
        "status": "ACTIVE",
        "featured": true,
        "listedAt": "2016-01-01T00:00:00+00:00",
        "updatedAt": "2024-04-26T08:20:29+00:00",
        "availableAt": "2016-02-01T00:00:00+00:00",
        "description": {
          "NL": "Necessitatibus ab illo eum eligendi eum soluta. Adipisci nihil odio qui temporibus odio. Tenetur doloremque sit quas pariatur iste qui velit.",
          "FR": "Delectus ratione rerum eligendi voluptas provident. Aliquid maiores expedita non ipsum. Occaecati nihil non fuga."
        },
        "title": null,
        "agency": {
          "id": 976287598,
          "address": {
            "id": 5974822,
            "type": "ADDRESS",
            "countryIso": "BE",
            "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",
          "locality": "Gent",
          "subLocality": "Gent",
          "district": "Sint-Jacobs",
          "postalCode": "9000",
          "street": "Sint-Jacobsnieuwstraat",
          "number": "17",
          "box": null,
          "text": null,
          "longitude": 3.7291261356306,
          "latitude": 51.055230260881,
          "coordinatesAccuracy": null
        },
        "addressVisible": false,
        "price": 3537.03,
        "currency": "EUR",
        "priceVisible": false,
        "vatIncluded": null,
        "monthlyFixedCosts": 2307.11,
        "floor": 5,
        "numberOfFloors": 9,
        "habitableArea": 989.45,
        "landArea": 31832690.08,
        "gardenArea": null,
        "garageArea": null,
        "terraceArea": null,
        "basementArea": null,
        "balconyArea": null,
        "numberOfBedrooms": 7,
        "numberOfBathrooms": 5,
        "numberOfToilets": 7,
        "numberOfGarages": null,
        "numberOfParkingSpaces": 4,
        "buildYear": 1685,
        "renovationYear": 1987,
        "cadastralIncome": 691127.05,
        "energyConsumption": 290446900.11,
        "energyConsumptionYearly": 71791437.13,
        "energyCertificateNumber": "679a3f64-2332-37a9-9d06-34febf3b172a",
        "energyClassification": null,
        "eLevel": null,
        "kLevel": null,
        "co2Emissions": 369761811.07,
        "facadeWidth": 1837.69,
        "detachment": "CORNER",
        "heatingType": "GEOTHERMAL",
        "gardenOrientation": "SE",
        "electricityInspectionReportType": "NOT_DISCLOSED",
        "floodProneLocation": "NOT_A_FLOOD_PRONE_AREA",
        "delineatedArea": "DELINEATED_FLOOD_PRONE_AREA",
        "flags": {
          "HAS_RADIATORS": true,
          "HAS_SMOKE_EXTRACTOR": true,
          "HAS_RAIN_WATER_RECUPERATION": true,
          "HAS_DRESSING": false
        },
        "pictures": [
          {
            "id": 52,
            "url": "https://lorempixel.com/640/480/?41355",
            "thumbnail": "https://lorempixel.com/640/480/?65819",
            "md5Hash": "d15f2816db0b81f2f556e1fa792660f9",
            "order": 0
          },
          {
            "id": 93,
            "url": "https://lorempixel.com/640/480/?36216",
            "thumbnail": "https://lorempixel.com/640/480/?59341",
            "md5Hash": "74c973cbf4de302bf3d14785ac2f1aae",
            "order": 1
          },
          {
            "id": 49,
            "url": "https://lorempixel.com/640/480/?21930",
            "thumbnail": "https://lorempixel.com/640/480/?35848",
            "md5Hash": "76dd771a383b05f1b8548996a8292ac3",
            "order": 2
          }
        ],
        "virtualTours": null,
        "canonicalUrls": {
          "NL": "https://www.realo.be/nl/sint-jacobsnieuwstraat-17-9000-gent/4366163?l=26",
          "FR": "https://www.realo.fr/nl/sint-jacobsnieuwstraat-17-9000-gent/4366163?l=26"
        },
        "agencyUrl": "https://jacobs.com/in-distinctio-nam-molestiae-nostrum.html",
        "agencyReference": 263866,
        "contactEmail": null,
        "contactPhone": null,
        "metadata": {
          "id": 98402
        },
        "isExternalListing": null,
        "listingContactId": null,
        "sourceId": null,
        "projectId": null
      }
    ]
Create a new listing
/projects/{id}/listings

All listings created using this endpoint will be part of the parent project.

  • Parameters
  • id
    number (required) Example: 1

    ID of the parent project

  • Request
  • Headers
    Content-Type: application/json
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
    Body
    {
      "type": "APARTMENT",
      "secondaryType": null,
      "buildingCondition": null,
      "way": "RENT",
      "status": "ACTIVE",
      "listedAt": "2016-01-01T00:00:00+00:00",
      "updatedAt": "2024-04-26T08:20:29+00:00",
      "availableAt": "2016-02-01T00:00:00+00:00",
      "description": {
        "NL": "Necessitatibus ab illo eum eligendi eum soluta. Adipisci nihil odio qui temporibus odio. Tenetur doloremque sit quas pariatur iste qui velit.",
        "FR": "Delectus ratione rerum eligendi voluptas provident. Aliquid maiores expedita non ipsum. Occaecati nihil non fuga."
      },
      "title": null,
      "address": {
        "id": 4366163,
        "countryIso": "BE",
        "locality": "Gent",
        "postalCode": "9000",
        "street": "Sint-Jacobsnieuwstraat",
        "number": "17",
        "box": null,
        "text": null,
        "longitude": 3.7291261356306,
        "latitude": 51.055230260881,
        "coordinatesAccuracy": null
      },
      "addressVisible": false,
      "price": 3537.03,
      "currency": "EUR",
      "priceVisible": false,
      "vatIncluded": null,
      "monthlyFixedCosts": 2307.11,
      "floor": 5,
      "numberOfFloors": 9,
      "habitableArea": 989.45,
      "landArea": 31832690.08,
      "gardenArea": null,
      "garageArea": null,
      "terraceArea": null,
      "basementArea": null,
      "balconyArea": null,
      "numberOfBedrooms": 7,
      "numberOfBathrooms": 5,
      "numberOfToilets": 7,
      "numberOfGarages": null,
      "numberOfParkingSpaces": 4,
      "buildYear": 1685,
      "renovationYear": 1987,
      "cadastralIncome": 691127.05,
      "energyConsumption": 290446900.11,
      "energyConsumptionYearly": 71791437.13,
      "energyCertificateNumber": "679a3f64-2332-37a9-9d06-34febf3b172a",
      "energyClassification": null,
      "eLevel": null,
      "kLevel": null,
      "co2Emissions": 369761811.07,
      "facadeWidth": 1837.69,
      "detachment": "CORNER",
      "heatingType": "GEOTHERMAL",
      "gardenOrientation": "SE",
      "electricityInspectionReportType": "NOT_DISCLOSED",
      "floodProneLocation": "NOT_A_FLOOD_PRONE_AREA",
      "delineatedArea": "DELINEATED_FLOOD_PRONE_AREA",
      "flags": {
        "HAS_RADIATORS": true,
        "HAS_SMOKE_EXTRACTOR": true,
        "HAS_RAIN_WATER_RECUPERATION": true,
        "HAS_DRESSING": false
      },
      "virtualTours": null,
      "agencyUrl": "https://jacobs.com/in-distinctio-nam-molestiae-nostrum.html",
      "agencyReference": 263866,
      "metadata": {
        "id": 98402
      },
      "sourceId": null,
      "projectId": null
    }
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "data": {
        "id": 1
      }
    }

Publishing 

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.

Publish a project
/projects/{id}/publish
  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "success": true
    }
Next  Previous

Agencies 

Agency properties

  • 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.

    • locality (string, optional)

      Locality name.

    • subLocality (string, read-only)

      Sub-locality name.

    • district (string, read-only)

      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.

Agencies 

Get all agencies
/agencies
  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "id": 976287598,
      "address": {
        "id": 5974822,
        "type": "ADDRESS",
        "countryIso": "BE",
        "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"
    }
Create a new agency
/agencies
  • Request
  • Headers
    Content-Type: application/json
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
    Body
    {
      "address": {
        "id": 5974822,
        "countryIso": "BE",
        "locality": "Erpe-Mere",
        "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"
    }
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "id": 1
    }

Agency 

Retrieve an agency
/agencies/{id}
  • Parameters
  • id
    number (required) Example: 1

    ID of the agency

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "id": 976287598,
      "address": {
        "id": 5974822,
        "type": "ADDRESS",
        "countryIso": "BE",
        "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"
    }
Update an agency
/agencies/{id}
  • Parameters
  • id
    number (required) Example: 1

    ID of the agency

  • Request
  • Headers
    Content-Type: application/json
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
    Body
    {
      "address": {
        "id": 5974822,
        "countryIso": "BE",
        "locality": "Erpe-Mere",
        "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"
    }
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "success": true
    }
Next  Previous

Agents 

Agent properties

  • 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.

    • locality (string, optional)

      Locality name.

    • subLocality (string, read-only)

      Sub-locality name.

    • district (string, read-only)

      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.

Agents 

Get all agents
/agencies/{agency}/agents
  • Parameters
  • agency
    number (required) Example: 1

    ID of the agency

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "firstName": "Kristof",
      "lastName": "Welleman",
      "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
    }
Create a new agent
/agencies/{agency}/agents
  • Parameters
  • agency
    number (required) Example: 1

    ID of the agency

  • Request
  • Headers
    Content-Type: application/json
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
    Body
    {
      "type": "APARTMENT",
      "secondaryType": null,
      "buildingCondition": null,
      "way": "RENT",
      "status": "ACTIVE",
      "listedAt": "2016-01-01T00:00:00+00:00",
      "updatedAt": "2024-04-26T08:20:29+00:00",
      "availableAt": "2016-02-01T00:00:00+00:00",
      "description": {
        "NL": "Necessitatibus ab illo eum eligendi eum soluta. Adipisci nihil odio qui temporibus odio. Tenetur doloremque sit quas pariatur iste qui velit.",
        "FR": "Delectus ratione rerum eligendi voluptas provident. Aliquid maiores expedita non ipsum. Occaecati nihil non fuga."
      },
      "title": null,
      "address": {
        "id": 4366163,
        "countryIso": "BE",
        "locality": "Gent",
        "postalCode": "9000",
        "street": "Sint-Jacobsnieuwstraat",
        "number": "17",
        "box": null,
        "text": null,
        "longitude": 3.7291261356306,
        "latitude": 51.055230260881,
        "coordinatesAccuracy": null
      },
      "addressVisible": false,
      "price": 3537.03,
      "currency": "EUR",
      "priceVisible": false,
      "vatIncluded": null,
      "monthlyFixedCosts": 2307.11,
      "floor": 5,
      "numberOfFloors": 9,
      "habitableArea": 989.45,
      "landArea": 31832690.08,
      "gardenArea": null,
      "garageArea": null,
      "terraceArea": null,
      "basementArea": null,
      "balconyArea": null,
      "numberOfBedrooms": 7,
      "numberOfBathrooms": 5,
      "numberOfToilets": 7,
      "numberOfGarages": null,
      "numberOfParkingSpaces": 4,
      "buildYear": 1685,
      "renovationYear": 1987,
      "cadastralIncome": 691127.05,
      "energyConsumption": 290446900.11,
      "energyConsumptionYearly": 71791437.13,
      "energyCertificateNumber": "679a3f64-2332-37a9-9d06-34febf3b172a",
      "energyClassification": null,
      "eLevel": null,
      "kLevel": null,
      "co2Emissions": 369761811.07,
      "facadeWidth": 1837.69,
      "detachment": "CORNER",
      "heatingType": "GEOTHERMAL",
      "gardenOrientation": "SE",
      "electricityInspectionReportType": "NOT_DISCLOSED",
      "floodProneLocation": "NOT_A_FLOOD_PRONE_AREA",
      "delineatedArea": "DELINEATED_FLOOD_PRONE_AREA",
      "flags": {
        "HAS_RADIATORS": true,
        "HAS_SMOKE_EXTRACTOR": true,
        "HAS_RAIN_WATER_RECUPERATION": true,
        "HAS_DRESSING": false
      },
      "virtualTours": null,
      "agencyUrl": "https://jacobs.com/in-distinctio-nam-molestiae-nostrum.html",
      "agencyReference": 263866,
      "metadata": {
        "id": 98402
      },
      "sourceId": null,
      "projectId": null
    }
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "id": 1
    }

Agent 

Retrieve an agent
/agents/{id}
  • Parameters
  • id
    number (required) Example: 1

    ID of the agent

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "firstName": "Kristof",
      "lastName": "Welleman",
      "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
    }
Update an agent
/agents/{id}
  • Parameters
  • id
    number (required) Example: 1

    ID of the agent

  • Request
  • Headers
    Content-Type: application/json
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
    Body
    {
      "firstName": "Kristof",
      "lastName": "Welleman",
      "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
    }
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "success": true
    }
Delete an agent
/agents/{id}
  • Parameters
  • id
    number (required) Example: 1

    ID of the agent

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "success": true
    }
Next  Previous

Enquiries 

Enquiry properties

  • 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.

Agency enquiries 

Get all agent enquiries
/agencies/{agency}/enquiries
  • Parameters
  • agency
    number (required) Example: 1

    ID of the agency

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    [
      {
        "id": 4,
        "listingId": 92,
        "addressId": 49,
        "threadId": 17,
        "date": "2024-04-26T08:20:29+00:00",
        "user": {
          "id": 36,
          "language": "LG",
          "firstName": "Pete",
          "lastName": "Nitzsche",
          "email": "barrows.rebeka@gmail.com"
        },
        "message": "Natus blanditiis aperiam quis consequuntur. Odio quaerat quia eaque autem vero. Reprehenderit ipsa et adipisci debitis ea iusto."
      }
    ]
Next  Previous

Addresses 

Address properties

  • id (integer, optional)

    Unique identifier.

  • type (enum[AddressType], read-only)

    Address precision.

  • countryIso (enum[Country], optional)

    Country ISO 3166-2 code.

  • locality (string, optional)

    Locality name.

  • subLocality (string, read-only)

    Sub-locality name.

  • district (string, read-only)

    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.

Search
/addresses/search{?q}
  • Parameters
  • q
    string (required) Example: Poel 16, 9000 Gent

    The textual address representation

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    [
      {
        "id": 4366163,
        "type": "ADDRESS",
        "countryIso": "BE",
        "locality": "Gent",
        "subLocality": "Gent",
        "district": "Sint-Jacobs",
        "postalCode": "9000",
        "street": "Sint-Jacobsnieuwstraat",
        "number": "17",
        "box": null,
        "text": null,
        "longitude": 3.7291261356306,
        "latitude": 51.055230260881,
        "coordinatesAccuracy": null
      }
    ]

Address 

Retrieve address information
/addresses/{id}
  • Parameters
  • id
    number (required) Example: 1

    ID of the address

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "id": 4366163,
      "type": "ADDRESS",
      "countryIso": "BE",
      "locality": "Gent",
      "subLocality": "Gent",
      "district": "Sint-Jacobs",
      "postalCode": "9000",
      "street": "Sint-Jacobsnieuwstraat",
      "number": "17",
      "box": null,
      "text": null,
      "longitude": 3.7291261356306,
      "latitude": 51.055230260881,
      "coordinatesAccuracy": null
    }
Next  Previous

Estates 

Estate properties

  • 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.

    • locality (string, optional)

      Locality name.

    • subLocality (string, read-only)

      Sub-locality name.

    • district (string, read-only)

      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)

Estate 

Retrieve estate information
/estates/{id}
  • Parameters
  • id
    number (required) Example: 1

    ID of the address

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "id": null,
      "address": {
        "id": 4366163,
        "type": "ADDRESS",
        "countryIso": "BE",
        "locality": "Gent",
        "subLocality": "Gent",
        "district": "Sint-Jacobs",
        "postalCode": "9000",
        "street": "Sint-Jacobsnieuwstraat",
        "number": "17",
        "box": null,
        "text": null,
        "longitude": 3.7291261356306,
        "latitude": 51.055230260881,
        "coordinatesAccuracy": null
      },
      "type": "HOUSE",
      "parcelCode": "44802B1264/00C000",
      "numberOfUnits": null,
      "units": null,
      "estateSecondaryType": null,
      "floor": 1,
      "numberOfFloors": 5,
      "habitableArea": 742,
      "landArea": 272,
      "constructedArea": null,
      "terraceArea": null,
      "terraceOrientation": null,
      "gardenArea": null,
      "gardenOrientation": "NE",
      "numberOfBedrooms": 1,
      "numberOfBathrooms": 2,
      "numberOfToilets": 2,
      "numberOfOtherRooms": null,
      "numberOfRooms": null,
      "numberOfGarages": null,
      "numberOfParkingSpaces": 0,
      "buildYear": 1977,
      "renovationYear": 2020,
      "heatingType": null,
      "energyConsumption": 400,
      "energyConsumptionYearly": null,
      "energyClassification": "D",
      "facadeWidth": 8.6,
      "flags": [],
      "ownEstimate": null,
      "estimate": null,
      "parcelDepth": 44.3,
      "parcelWidth": 8.6,
      "buildingArea": 255,
      "buildingDepth": 30,
      "buildingHeight": 17.5,
      "buildingDistanceFromStreet": null,
      "spatialPlanning": null,
      "floodProneLocation": "POSSIBLE_FLOOD_PRONE_AREA",
      "detachment": "SEMI_DETACHED",
      "distanceFromStreet": null,
      "neighbourhood": {
        "averageAge": 39.42,
        "averageEstimatePrice": 344042.38,
        "averageHabitableArea": null,
        "averageIncomePerPersonPerYear": 26031,
        "medianIncomePerPersonPerYear": 19821,
        "medianRentPrice": 1450,
        "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": [
        "numberOfFloors"
      ]
    }

Extended Estate 

Retrieve extended estate information
/estates/{id}/extended
  • Parameters
  • id
    number (required) Example: 1

    ID of the address

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "id": null,
      "address": {
        "id": 4366163,
        "type": "ADDRESS",
        "countryIso": "BE",
        "locality": "Gent",
        "subLocality": "Gent",
        "district": "Sint-Jacobs",
        "postalCode": "9000",
        "street": "Sint-Jacobsnieuwstraat",
        "number": "17",
        "box": null,
        "text": null,
        "longitude": 3.7291261356306,
        "latitude": 51.055230260881,
        "coordinatesAccuracy": null
      },
      "type": "HOUSE",
      "parcelCode": "44802B1264/00C000",
      "numberOfUnits": null,
      "units": null,
      "estateSecondaryType": null,
      "floor": 1,
      "numberOfFloors": 5,
      "habitableArea": 742,
      "landArea": 272,
      "constructedArea": null,
      "terraceArea": null,
      "terraceOrientation": null,
      "gardenArea": null,
      "gardenOrientation": "NE",
      "numberOfBedrooms": 1,
      "numberOfBathrooms": 2,
      "numberOfToilets": 2,
      "numberOfOtherRooms": null,
      "numberOfRooms": null,
      "numberOfGarages": null,
      "numberOfParkingSpaces": 0,
      "buildYear": 1977,
      "renovationYear": 2020,
      "heatingType": null,
      "energyConsumption": 400,
      "energyConsumptionYearly": null,
      "energyClassification": "D",
      "facadeWidth": 8.6,
      "flags": [],
      "ownEstimate": null,
      "estimate": null,
      "parcelDepth": 44.3,
      "parcelWidth": 8.6,
      "buildingArea": 255,
      "buildingDepth": 30,
      "buildingHeight": 17.5,
      "buildingDistanceFromStreet": null,
      "spatialPlanning": null,
      "floodProneLocation": "POSSIBLE_FLOOD_PRONE_AREA",
      "detachment": "SEMI_DETACHED",
      "distanceFromStreet": null,
      "neighbourhood": {
        "averageAge": 39.42,
        "averageEstimatePrice": 344042.38,
        "averageHabitableArea": null,
        "averageIncomePerPersonPerYear": 26031,
        "medianIncomePerPersonPerYear": 19821,
        "medianRentPrice": 1450,
        "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": [
        "numberOfFloors"
      ]
    }

Estate Features 

Retrieve specific estate information
/estates/{id}/keys
  • Parameters
  • id
    number (required) Example: 1

    ID of the address

    keys
    array (required) Example: 1

    Requested keys

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "id": null,
      "address": {
        "id": 4366163,
        "type": "ADDRESS",
        "countryIso": "BE",
        "locality": "Gent",
        "subLocality": "Gent",
        "district": "Sint-Jacobs",
        "postalCode": "9000",
        "street": "Sint-Jacobsnieuwstraat",
        "number": "17",
        "box": null,
        "text": null,
        "longitude": 3.7291261356306,
        "latitude": 51.055230260881,
        "coordinatesAccuracy": null
      },
      "type": "HOUSE",
      "parcelCode": "44802B1264/00C000",
      "numberOfUnits": null,
      "units": null,
      "estateSecondaryType": null,
      "floor": 1,
      "numberOfFloors": 5,
      "habitableArea": 742,
      "landArea": 272,
      "constructedArea": null,
      "terraceArea": null,
      "terraceOrientation": null,
      "gardenArea": null,
      "gardenOrientation": "NE",
      "numberOfBedrooms": 1,
      "numberOfBathrooms": 2,
      "numberOfToilets": 2,
      "numberOfOtherRooms": null,
      "numberOfRooms": null,
      "numberOfGarages": null,
      "numberOfParkingSpaces": 0,
      "buildYear": 1977,
      "renovationYear": 2020,
      "heatingType": null,
      "energyConsumption": 400,
      "energyConsumptionYearly": null,
      "energyClassification": "D",
      "facadeWidth": 8.6,
      "flags": [],
      "ownEstimate": null,
      "estimate": null,
      "parcelDepth": 44.3,
      "parcelWidth": 8.6,
      "buildingArea": 255,
      "buildingDepth": 30,
      "buildingHeight": 17.5,
      "buildingDistanceFromStreet": null,
      "spatialPlanning": null,
      "floodProneLocation": "POSSIBLE_FLOOD_PRONE_AREA",
      "detachment": "SEMI_DETACHED",
      "distanceFromStreet": null,
      "neighbourhood": {
        "averageAge": 39.42,
        "averageEstimatePrice": 344042.38,
        "averageHabitableArea": null,
        "averageIncomePerPersonPerYear": 26031,
        "medianIncomePerPersonPerYear": 19821,
        "medianRentPrice": 1450,
        "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": [
        "numberOfFloors"
      ]
    }
Next  Previous

Transactions 

Transaction properties

  • 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.

      • locality (string, optional)

        Locality name.

      • subLocality (string, read-only)

        Sub-locality name.

      • district (string, read-only)

        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.

    • locality (string, optional)

      Locality name.

    • subLocality (string, read-only)

      Sub-locality name.

    • district (string, read-only)

      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.

Transactions 

Get all transactions
/agencies/{agency}/transactions

This endpoint returns all transactions owned by the parent agency resource.

  • Parameters
  • agency
    number (required) Example: 1

    ID of the parent agency

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    [
      {
        "id": 85,
        "type": "HOUSE",
        "way": "SELL_ANNUITY",
        "status": "ACTIVE",
        "listedAt": "2016-01-01T00:00:00+00:00",
        "removedAt": "2024-04-26T08:20:29+00:00",
        "agency": {
          "id": 67,
          "address": {
            "id": 29,
            "type": "ADDRESS",
            "countryIso": "BE",
            "locality": "Henegouwen",
            "subLocality": "Oostende",
            "district": "Luik",
            "postalCode": "4983",
            "street": "Cornetstraat",
            "number": "8",
            "box": "8",
            "text": null,
            "longitude": -156.207515,
            "latitude": -56.492798,
            "coordinatesAccuracy": null
          },
          "name": "Michaux",
          "telephone": "+401010937019",
          "mobile": null,
          "email": "janssen.helena@gerard.be",
          "buyerLeadEmail": null,
          "renterLeadEmail": null,
          "sellerLeadEmail": null,
          "letterLeadEmail": null,
          "websiteUrl": "https://www.lacroix.com/alias-minima-repellendus-voluptas-at",
          "language": "BE",
          "sourceId": null,
          "code": null,
          "feedUrl": null,
          "feedType": null,
          "avatarUrl": null
        },
        "address": {
          "id": 58,
          "type": "ADDRESS",
          "countryIso": "BE",
          "locality": "Waals-Brabant",
          "subLocality": "Maaseik",
          "district": "Hasselt",
          "postalCode": "1007",
          "street": "Amraniweg",
          "number": "3",
          "box": "7",
          "text": null,
          "longitude": 114.008986,
          "latitude": -62.496264,
          "coordinatesAccuracy": null
        },
        "price": 9671548.38,
        "currency": "EUR",
        "monthlyFixedCosts": 37.02,
        "floor": 4,
        "numberOfFloors": 4,
        "habitableArea": 6425664.31,
        "landArea": 1858.42,
        "numberOfBedrooms": 6,
        "numberOfBathrooms": 2,
        "numberOfToilets": 1,
        "numberOfParkingSpaces": 4,
        "buildYear": 1679,
        "renovationYear": 1959,
        "cadastralIncome": 2587.55,
        "energyConsumption": 436780.45,
        "energyConsumptionYearly": 27942580.04,
        "energyCertificateNumber": "599e0dd5-95c3-3e26-8e4e-9b6f6370f952",
        "energyClassification": null,
        "co2Emissions": 66166.22,
        "facadeWidth": 729110.55,
        "detachment": "DETACHED",
        "heatingType": "NONE",
        "gardenOrientation": "E",
        "electricityInspectionReportType": "AVAILABLE_CONFORM",
        "floodProneLocation": "NOT_A_FLOOD_PRONE_AREA",
        "delineatedArea": "DELINEATED_RIPARIAN_ZONE",
        "flags": {
          "HAS_CONCIERGE": true,
          "HAS_WINE_CELLAR": true,
          "HAS_PLANNING_PERMIT": true,
          "HAS_INTERCOM": false
        },
        "agencyUrl": "https://robel.net/accusantium-et-aut-est-laboriosam-ut-quasi-et.html",
        "agencyReference": 664374,
        "contactEmail": null,
        "contactPhone": null,
        "avatarUrl": null
      }
    ]
Create a new transaction
/agencies/{agency}/transactions

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.

  • Parameters
  • agency
    number (required) Example: 1

    ID of the parent agency

  • Request
  • Headers
    Content-Type: application/json
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
    Body
    {
      "type": "HOUSE",
      "way": "SELL_ANNUITY",
      "status": "ACTIVE",
      "listedAt": "2016-01-01T00:00:00+00:00",
      "removedAt": "2024-04-26T08:20:29+00:00",
      "address": {
        "id": 58,
        "countryIso": "BE",
        "locality": "Waals-Brabant",
        "postalCode": "1007",
        "street": "Amraniweg",
        "number": "3",
        "box": "7",
        "text": null,
        "longitude": 114.008986,
        "latitude": -62.496264,
        "coordinatesAccuracy": null
      },
      "price": 9671548.38,
      "currency": "EUR",
      "monthlyFixedCosts": 37.02,
      "floor": 4,
      "numberOfFloors": 4,
      "habitableArea": 6425664.31,
      "landArea": 1858.42,
      "numberOfBedrooms": 6,
      "numberOfBathrooms": 2,
      "numberOfToilets": 1,
      "numberOfParkingSpaces": 4,
      "buildYear": 1679,
      "renovationYear": 1959,
      "cadastralIncome": 2587.55,
      "energyConsumption": 436780.45,
      "energyConsumptionYearly": 27942580.04,
      "energyCertificateNumber": "599e0dd5-95c3-3e26-8e4e-9b6f6370f952",
      "energyClassification": null,
      "co2Emissions": 66166.22,
      "facadeWidth": 729110.55,
      "detachment": "DETACHED",
      "heatingType": "NONE",
      "gardenOrientation": "E",
      "electricityInspectionReportType": "AVAILABLE_CONFORM",
      "floodProneLocation": "NOT_A_FLOOD_PRONE_AREA",
      "delineatedArea": "DELINEATED_RIPARIAN_ZONE",
      "flags": {
        "HAS_CONCIERGE": true,
        "HAS_WINE_CELLAR": true,
        "HAS_PLANNING_PERMIT": true,
        "HAS_INTERCOM": false
      },
      "agencyUrl": "https://robel.net/accusantium-et-aut-est-laboriosam-ut-quasi-et.html",
      "agencyReference": 664374
    }
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "data": {
        "id": 3
      }
    }
Next  Previous

Valuations 

Valuation properties

  • 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.

    • locality (string, optional)

      Locality name.

    • subLocality (string, read-only)

      Sub-locality name.

    • district (string, read-only)

      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.

Valuations 

Get all valuations
/valuations

This endpoint returns all valuations owned by the current API key. This endpoint supports pagination.

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    [
      {
        "id": 1323012287,
        "agencyId": null,
        "address": {
          "id": 4260953,
          "type": "ADDRESS",
          "countryIso": "BE",
          "locality": "Gent",
          "subLocality": "Mariakerke",
          "district": "Kerkwijk",
          "postalCode": "9030",
          "street": "Brugsesteenweg",
          "number": "419",
          "box": null,
          "text": null,
          "longitude": 3.6821194353725,
          "latitude": 51.070229923597,
          "coordinatesAccuracy": null
        },
        "shapeId": 1320166,
        "estateType": "HOUSE",
        "estateSecondaryType": null,
        "detachment": "TERRACED",
        "floor": null,
        "numberOfFloors": 3,
        "habitableArea": 253,
        "landArea": 160,
        "constructedArea": null,
        "terraceArea": null,
        "terraceOrientation": null,
        "gardenArea": 83,
        "gardenOrientation": "SW",
        "numberOfBedrooms": 3,
        "numberOfBathrooms": 2,
        "numberOfToilets": 2,
        "numberOfOtherRooms": null,
        "numberOfRooms": 4,
        "numberOfGarages": 1,
        "numberOfParkingSpaces": null,
        "buildYear": 1958,
        "renovationYear": null,
        "energyConsumption": null,
        "energyClassification": "F",
        "facadeWidth": 7.2,
        "flags": {
          "HAS_ALARM_SECURITY": false,
          "HAS_ATTIC": true,
          "HAS_BASEMENT": false,
          "HAS_DOUBLE_GLASS": true,
          "HAS_DRESSING": false,
          "HAS_ELEVATOR": false,
          "HAS_FIREPLACE": true,
          "HAS_GARDEN": true,
          "HAS_JACUZZI": false,
          "HAS_SAUNA": false,
          "HAS_SOLAR_PANELS": false,
          "HAS_SWIMMING_POOL": false
        },
        "ownEstimate": {
          "saleEstimate": 371040,
          "rentEstimate": null,
          "explanation": null
        },
        "estimate": {
          "saleEstimate": 516000,
          "rentEstimate": 1140,
          "currency": "EUR",
          "type": null,
          "info": "SHOWN",
          "confidence": 63
        },
        "parcelArea": null,
        "parcelDepth": 21,
        "parcelWidth": 7.2,
        "buildingArea": 97,
        "buildingDepth": 16,
        "buildingHeight": 14.1,
        "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": "Mariakerke",
            "subLocality": null,
            "district": null,
            "postalCode": "9030",
            "street": "Brugsesteenweg",
            "number": "419",
            "premiseName": null,
            "box": "",
            "entrance": null,
            "floor": null,
            "door": null,
            "language": null,
            "geocoderVersion": null
          },
          "isHeritage": "NO",
          "hasProtections": "NO",
          "parcelWidth": 7.2,
          "parcelDepth": 21,
          "buildingArea": 97,
          "buildingHeight": 14.1,
          "buildingDepth": 16,
          "floodProneLocation": "NOT_A_FLOOD_PRONE_AREA",
          "floodProneRisk": "NOT_A_FLOOD_PRONE_AREA",
          "floodProneBuildingScore": "A",
          "floodProneParcelScore": "A",
          "generalDestination": null,
          "generalUse": null,
          "preemptionRight": "NO",
          "cadastralIncome": 1519,
          "buildingCondition": "AVERAGE",
          "spatialPlanning": "RESIDENTIAL",
          "addressText": "Brugsesteenweg 419, 9030 Mariakerke, Gent",
          "parcelLocation": null,
          "distanceFromStreet": 2,
          "numberOfStorageRooms": 0,
          "renovationCondition": "NOT_RENOVATED",
          "renovationInfo": "- PVC ramen 1994\n",
          "numberOfLivingRooms": 1,
          "numberOfDiningRooms": 1,
          "numberOfKitchenRooms": 1,
          "numberOfOfficeRooms": 1,
          "numberOfCellarRooms": 0,
          "numberOfMezzanineRooms": 1,
          "declaredValue": null,
          "estimateMemo": null
        }
      },
      {
        "id": 297091476,
        "agencyId": null,
        "address": {
          "id": 4528224,
          "type": "ADDRESS",
          "countryIso": "BE",
          "locality": "Maarkedal",
          "subLocality": "Etikhove",
          "district": "Bossenaar",
          "postalCode": "9680",
          "street": "Beukelweg",
          "number": "3",
          "box": null,
          "text": null,
          "longitude": 3.6443014915398,
          "latitude": 50.788148682811,
          "coordinatesAccuracy": null
        },
        "shapeId": 4522853,
        "estateType": "HOUSE",
        "estateSecondaryType": null,
        "detachment": "DETACHED",
        "floor": null,
        "numberOfFloors": 2,
        "habitableArea": 218,
        "landArea": 12003,
        "constructedArea": null,
        "terraceArea": null,
        "terraceOrientation": null,
        "gardenArea": 9900,
        "gardenOrientation": "NW",
        "numberOfBedrooms": 3,
        "numberOfBathrooms": 2,
        "numberOfToilets": 1,
        "numberOfOtherRooms": null,
        "numberOfRooms": 4,
        "numberOfGarages": 1,
        "numberOfParkingSpaces": null,
        "buildYear": 1950,
        "renovationYear": 1979,
        "energyConsumption": null,
        "energyClassification": null,
        "facadeWidth": 17,
        "flags": {
          "HAS_ALARM_SECURITY": false,
          "HAS_ATTIC": true,
          "HAS_DOUBLE_GLASS": true,
          "HAS_DRESSING": false,
          "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": 516000,
          "rentEstimate": null,
          "explanation": null
        },
        "estimate": {
          "saleEstimate": 632000,
          "rentEstimate": 1110,
          "currency": "EUR",
          "type": null,
          "info": "SHOWN",
          "confidence": 60
        },
        "parcelArea": null,
        "parcelDepth": 140,
        "parcelWidth": 64,
        "buildingArea": 257,
        "buildingDepth": 10,
        "buildingHeight": null,
        "buildingDistanceFromStreet": null,
        "spatialPlanning": "AGRICULTURAL",
        "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": "Etikhove",
            "subLocality": null,
            "district": null,
            "postalCode": "9680",
            "street": "Beukelweg",
            "number": "3",
            "premiseName": null,
            "box": "",
            "entrance": null,
            "floor": null,
            "door": null,
            "language": null,
            "geocoderVersion": null
          },
          "isHeritage": "NO",
          "hasProtections": "NO",
          "parcelWidth": 64,
          "parcelDepth": 140,
          "buildingArea": 257,
          "buildingDepth": 10,
          "floodProneLocation": "NOT_A_FLOOD_PRONE_AREA",
          "floodProneRisk": "NOT_A_FLOOD_PRONE_AREA",
          "floodProneBuildingScore": "A",
          "floodProneParcelScore": "A",
          "estimateType": "VIRTUAL",
          "shapeIds": [
            4522853,
            4523296
          ],
          "generalDestination": null,
          "generalUse": null,
          "preemptionRight": "NO",
          "cadastralIncome": 912,
          "buildingHeight": null,
          "buildingCondition": "GOOD",
          "spatialPlanning": "AGRICULTURAL",
          "addressText": "Beukelweg 3, 9680 Etikhove, Maarkedal",
          "parcelLocation": null,
          "distanceFromStreet": 18.3,
          "numberOfStorageRooms": 0,
          "renovationCondition": "PARTIALLY_RENOVATED",
          "numberOfLivingRooms": 1,
          "numberOfDiningRooms": 1,
          "numberOfKitchenRooms": 1,
          "numberOfOfficeRooms": 0,
          "numberOfCellarRooms": 0,
          "numberOfMezzanineRooms": 1,
          "declaredValue": "",
          "estimateMemo": ""
        }
      },
      {
        "id": 2036041499,
        "agencyId": null,
        "address": {
          "id": 3975871,
          "type": "ADDRESS",
          "countryIso": "BE",
          "locality": "Herzele",
          "subLocality": "Hillegem",
          "district": "Mere - Merehoek",
          "postalCode": "9550",
          "street": "Provincieweg",
          "number": "410",
          "box": null,
          "text": null,
          "longitude": 3.861452994645,
          "latitude": 50.897134104861,
          "coordinatesAccuracy": null
        },
        "shapeId": 2555019,
        "estateType": "HOUSE",
        "estateSecondaryType": null,
        "detachment": "SEMI_DETACHED",
        "floor": null,
        "numberOfFloors": 2,
        "habitableArea": 450,
        "landArea": 584,
        "constructedArea": null,
        "terraceArea": null,
        "terraceOrientation": null,
        "gardenArea": 251,
        "gardenOrientation": "N",
        "numberOfBedrooms": 5,
        "numberOfBathrooms": 2,
        "numberOfToilets": 3,
        "numberOfOtherRooms": null,
        "numberOfRooms": 6,
        "numberOfGarages": 0,
        "numberOfParkingSpaces": null,
        "buildYear": 1991,
        "renovationYear": 2015,
        "energyConsumption": null,
        "energyClassification": "C",
        "facadeWidth": null,
        "flags": {
          "HAS_ALARM_SECURITY": false,
          "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": false,
          "HAS_SOLAR_PANELS": true,
          "HAS_SWIMMING_POOL": false
        },
        "ownEstimate": null,
        "estimate": {
          "saleEstimate": 506000,
          "rentEstimate": 1370,
          "currency": "EUR",
          "type": null,
          "info": "SHOWN",
          "confidence": 50
        },
        "parcelArea": null,
        "parcelDepth": 37,
        "parcelWidth": 13.6,
        "buildingArea": 326,
        "buildingDepth": 25,
        "buildingHeight": null,
        "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": "Hillegem",
            "subLocality": null,
            "district": null,
            "postalCode": "9550",
            "street": "Provincieweg",
            "number": "410",
            "premiseName": null,
            "box": "",
            "entrance": null,
            "floor": null,
            "door": null,
            "language": null,
            "geocoderVersion": null
          },
          "isHeritage": "NO",
          "hasProtections": "NO",
          "parcelWidth": 13.6,
          "parcelDepth": 37,
          "buildingArea": 326,
          "buildingDepth": 25,
          "floodProneLocation": "NOT_A_FLOOD_PRONE_AREA",
          "floodProneRisk": "NOT_A_FLOOD_PRONE_AREA",
          "floodProneBuildingScore": "B",
          "floodProneParcelScore": "B",
          "generalDestination": null,
          "generalUse": null,
          "preemptionRight": "NO",
          "cadastralIncome": null,
          "buildingHeight": null,
          "buildingCondition": "GOOD",
          "spatialPlanning": "RESIDENTIAL",
          "addressText": "Provincieweg 410, 9550 Hillegem, Herzele",
          "parcelLocation": null,
          "distanceFromStreet": 5.8,
          "numberOfStorageRooms": 0,
          "renovationCondition": "PARTIALLY_RENOVATED",
          "numberOfLivingRooms": 1,
          "numberOfDiningRooms": 1,
          "numberOfKitchenRooms": 1,
          "numberOfOfficeRooms": 2,
          "numberOfCellarRooms": 1,
          "numberOfMezzanineRooms": 1
        }
      }
    ]
Create a new valuation
/valuations

This endpoint is responsible for the creation of new valuations.

  • Request
  • Headers
    Content-Type: application/json
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
    Body
    {
      "agencyId": null,
      "address": {
        "id": 4260953,
        "countryIso": "BE",
        "locality": "Gent",
        "postalCode": "9030",
        "street": "Brugsesteenweg",
        "number": "419",
        "box": null,
        "text": null,
        "longitude": 3.6821194353725,
        "latitude": 51.070229923597,
        "coordinatesAccuracy": null
      },
      "shapeId": 1320166,
      "estateType": "HOUSE",
      "estateSecondaryType": null,
      "detachment": "TERRACED",
      "floor": null,
      "numberOfFloors": 3,
      "habitableArea": 253,
      "landArea": 160,
      "constructedArea": null,
      "terraceArea": null,
      "terraceOrientation": null,
      "gardenArea": 83,
      "gardenOrientation": "SW",
      "numberOfBedrooms": 3,
      "numberOfBathrooms": 2,
      "numberOfToilets": 2,
      "numberOfOtherRooms": null,
      "numberOfRooms": 4,
      "numberOfGarages": 1,
      "numberOfParkingSpaces": null,
      "buildYear": 1958,
      "renovationYear": null,
      "energyConsumption": null,
      "energyClassification": "F",
      "facadeWidth": 7.2,
      "flags": {
        "HAS_ALARM_SECURITY": false,
        "HAS_ATTIC": true,
        "HAS_BASEMENT": false,
        "HAS_DOUBLE_GLASS": true,
        "HAS_DRESSING": false,
        "HAS_ELEVATOR": false,
        "HAS_FIREPLACE": true,
        "HAS_GARDEN": true,
        "HAS_JACUZZI": false,
        "HAS_SAUNA": false,
        "HAS_SOLAR_PANELS": false,
        "HAS_SWIMMING_POOL": false
      },
      "ownEstimate": {
        "saleEstimate": 371040,
        "rentEstimate": null,
        "explanation": null
      },
      "parcelArea": null,
      "parcelDepth": 21,
      "parcelWidth": 7.2,
      "buildingArea": 97,
      "buildingDepth": 16,
      "buildingHeight": 14.1,
      "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": "Mariakerke",
          "subLocality": null,
          "district": null,
          "postalCode": "9030",
          "street": "Brugsesteenweg",
          "number": "419",
          "premiseName": null,
          "box": "",
          "entrance": null,
          "floor": null,
          "door": null,
          "language": null,
          "geocoderVersion": null
        },
        "isHeritage": "NO",
        "hasProtections": "NO",
        "parcelWidth": 7.2,
        "parcelDepth": 21,
        "buildingArea": 97,
        "buildingHeight": 14.1,
        "buildingDepth": 16,
        "floodProneLocation": "NOT_A_FLOOD_PRONE_AREA",
        "floodProneRisk": "NOT_A_FLOOD_PRONE_AREA",
        "floodProneBuildingScore": "A",
        "floodProneParcelScore": "A",
        "generalDestination": null,
        "generalUse": null,
        "preemptionRight": "NO",
        "cadastralIncome": 1519,
        "buildingCondition": "AVERAGE",
        "spatialPlanning": "RESIDENTIAL",
        "addressText": "Brugsesteenweg 419, 9030 Mariakerke, Gent",
        "parcelLocation": null,
        "distanceFromStreet": 2,
        "numberOfStorageRooms": 0,
        "renovationCondition": "NOT_RENOVATED",
        "renovationInfo": "- PVC ramen 1994\n",
        "numberOfLivingRooms": 1,
        "numberOfDiningRooms": 1,
        "numberOfKitchenRooms": 1,
        "numberOfOfficeRooms": 1,
        "numberOfCellarRooms": 0,
        "numberOfMezzanineRooms": 1,
        "declaredValue": null,
        "estimateMemo": null
      }
    }
  • Response  201
  • Headers
    Content-Type: application/json
    Body
    {
      "id": 1
    }
  • Response  402
  • Headers
    Content-Type: application/json
    Body
    {
      "errors": [
        {
          "message": "Limit of estimates has been exceeded",
          "type": "API_Exception_PaymentRequiredException",
        }
      ]
    }

Valuation 

Retrieve a valuation
/valuations/{id}

This endpoint is used to retrieve a single valuation.

  • Parameters
  • id
    number (required) Example: 1

    ID of the valuation

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "id": 1323012287,
      "agencyId": null,
      "address": {
        "id": 4260953,
        "type": "ADDRESS",
        "countryIso": "BE",
        "locality": "Gent",
        "subLocality": "Mariakerke",
        "district": "Kerkwijk",
        "postalCode": "9030",
        "street": "Brugsesteenweg",
        "number": "419",
        "box": null,
        "text": null,
        "longitude": 3.6821194353725,
        "latitude": 51.070229923597,
        "coordinatesAccuracy": null
      },
      "shapeId": 1320166,
      "estateType": "HOUSE",
      "estateSecondaryType": null,
      "detachment": "TERRACED",
      "floor": null,
      "numberOfFloors": 3,
      "habitableArea": 253,
      "landArea": 160,
      "constructedArea": null,
      "terraceArea": null,
      "terraceOrientation": null,
      "gardenArea": 83,
      "gardenOrientation": "SW",
      "numberOfBedrooms": 3,
      "numberOfBathrooms": 2,
      "numberOfToilets": 2,
      "numberOfOtherRooms": null,
      "numberOfRooms": 4,
      "numberOfGarages": 1,
      "numberOfParkingSpaces": null,
      "buildYear": 1958,
      "renovationYear": null,
      "energyConsumption": null,
      "energyClassification": "F",
      "facadeWidth": 7.2,
      "flags": {
        "HAS_ALARM_SECURITY": false,
        "HAS_ATTIC": true,
        "HAS_BASEMENT": false,
        "HAS_DOUBLE_GLASS": true,
        "HAS_DRESSING": false,
        "HAS_ELEVATOR": false,
        "HAS_FIREPLACE": true,
        "HAS_GARDEN": true,
        "HAS_JACUZZI": false,
        "HAS_SAUNA": false,
        "HAS_SOLAR_PANELS": false,
        "HAS_SWIMMING_POOL": false
      },
      "ownEstimate": {
        "saleEstimate": 371040,
        "rentEstimate": null,
        "explanation": null
      },
      "estimate": {
        "saleEstimate": 516000,
        "rentEstimate": 1140,
        "currency": "EUR",
        "type": null,
        "info": "SHOWN",
        "confidence": 63
      },
      "parcelArea": null,
      "parcelDepth": 21,
      "parcelWidth": 7.2,
      "buildingArea": 97,
      "buildingDepth": 16,
      "buildingHeight": 14.1,
      "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": "Mariakerke",
          "subLocality": null,
          "district": null,
          "postalCode": "9030",
          "street": "Brugsesteenweg",
          "number": "419",
          "premiseName": null,
          "box": "",
          "entrance": null,
          "floor": null,
          "door": null,
          "language": null,
          "geocoderVersion": null
        },
        "isHeritage": "NO",
        "hasProtections": "NO",
        "parcelWidth": 7.2,
        "parcelDepth": 21,
        "buildingArea": 97,
        "buildingHeight": 14.1,
        "buildingDepth": 16,
        "floodProneLocation": "NOT_A_FLOOD_PRONE_AREA",
        "floodProneRisk": "NOT_A_FLOOD_PRONE_AREA",
        "floodProneBuildingScore": "A",
        "floodProneParcelScore": "A",
        "generalDestination": null,
        "generalUse": null,
        "preemptionRight": "NO",
        "cadastralIncome": 1519,
        "buildingCondition": "AVERAGE",
        "spatialPlanning": "RESIDENTIAL",
        "addressText": "Brugsesteenweg 419, 9030 Mariakerke, Gent",
        "parcelLocation": null,
        "distanceFromStreet": 2,
        "numberOfStorageRooms": 0,
        "renovationCondition": "NOT_RENOVATED",
        "renovationInfo": "- PVC ramen 1994\n",
        "numberOfLivingRooms": 1,
        "numberOfDiningRooms": 1,
        "numberOfKitchenRooms": 1,
        "numberOfOfficeRooms": 1,
        "numberOfCellarRooms": 0,
        "numberOfMezzanineRooms": 1,
        "declaredValue": null,
        "estimateMemo": null
      }
    }
  • Response  404
  • Headers
    Content-Type: application/json
    Body
    {
      "errors": [
        {
          "message": "Resource not found",
          "type": "API_Exception_NotFoundException",
        }
      ]
    }
Update a valuation
/valuations/{id}

This endpoint is used to update valuations and supports both partial and full update requests.

  • Parameters
  • id
    number (required) Example: 1

    ID of the valuation

  • Request
  • Headers
    Content-Type: application/json
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
    Body
    {
      "agencyId": null,
      "address": {
        "id": 4260953,
        "countryIso": "BE",
        "locality": "Gent",
        "postalCode": "9030",
        "street": "Brugsesteenweg",
        "number": "419",
        "box": null,
        "text": null,
        "longitude": 3.6821194353725,
        "latitude": 51.070229923597,
        "coordinatesAccuracy": null
      },
      "shapeId": 1320166,
      "estateType": "HOUSE",
      "estateSecondaryType": null,
      "detachment": "TERRACED",
      "floor": null,
      "numberOfFloors": 3,
      "habitableArea": 253,
      "landArea": 160,
      "constructedArea": null,
      "terraceArea": null,
      "terraceOrientation": null,
      "gardenArea": 83,
      "gardenOrientation": "SW",
      "numberOfBedrooms": 3,
      "numberOfBathrooms": 2,
      "numberOfToilets": 2,
      "numberOfOtherRooms": null,
      "numberOfRooms": 4,
      "numberOfGarages": 1,
      "numberOfParkingSpaces": null,
      "buildYear": 1958,
      "renovationYear": null,
      "energyConsumption": null,
      "energyClassification": "F",
      "facadeWidth": 7.2,
      "flags": {
        "HAS_ALARM_SECURITY": false,
        "HAS_ATTIC": true,
        "HAS_BASEMENT": false,
        "HAS_DOUBLE_GLASS": true,
        "HAS_DRESSING": false,
        "HAS_ELEVATOR": false,
        "HAS_FIREPLACE": true,
        "HAS_GARDEN": true,
        "HAS_JACUZZI": false,
        "HAS_SAUNA": false,
        "HAS_SOLAR_PANELS": false,
        "HAS_SWIMMING_POOL": false
      },
      "ownEstimate": {
        "saleEstimate": 371040,
        "rentEstimate": null,
        "explanation": null
      },
      "parcelArea": null,
      "parcelDepth": 21,
      "parcelWidth": 7.2,
      "buildingArea": 97,
      "buildingDepth": 16,
      "buildingHeight": 14.1,
      "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": "Mariakerke",
          "subLocality": null,
          "district": null,
          "postalCode": "9030",
          "street": "Brugsesteenweg",
          "number": "419",
          "premiseName": null,
          "box": "",
          "entrance": null,
          "floor": null,
          "door": null,
          "language": null,
          "geocoderVersion": null
        },
        "isHeritage": "NO",
        "hasProtections": "NO",
        "parcelWidth": 7.2,
        "parcelDepth": 21,
        "buildingArea": 97,
        "buildingHeight": 14.1,
        "buildingDepth": 16,
        "floodProneLocation": "NOT_A_FLOOD_PRONE_AREA",
        "floodProneRisk": "NOT_A_FLOOD_PRONE_AREA",
        "floodProneBuildingScore": "A",
        "floodProneParcelScore": "A",
        "generalDestination": null,
        "generalUse": null,
        "preemptionRight": "NO",
        "cadastralIncome": 1519,
        "buildingCondition": "AVERAGE",
        "spatialPlanning": "RESIDENTIAL",
        "addressText": "Brugsesteenweg 419, 9030 Mariakerke, Gent",
        "parcelLocation": null,
        "distanceFromStreet": 2,
        "numberOfStorageRooms": 0,
        "renovationCondition": "NOT_RENOVATED",
        "renovationInfo": "- PVC ramen 1994\n",
        "numberOfLivingRooms": 1,
        "numberOfDiningRooms": 1,
        "numberOfKitchenRooms": 1,
        "numberOfOfficeRooms": 1,
        "numberOfCellarRooms": 0,
        "numberOfMezzanineRooms": 1,
        "declaredValue": null,
        "estimateMemo": null
      }
    }
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "success": true
    }
  • Response  404
  • Headers
    Content-Type: application/json
    Body
    {
      "errors": [
        {
          "message": "Resource not found",
          "type": "API_Exception_NotFoundException",
        }
      ]
    }

Pictures 

Add a picture
/valuations/{id}/pictures

Add a picture to the estimate report.

  • Parameters
  • id
    number (required) Example: 1

    ID of the valuation

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
    Body
    {
      "url": "https://realocdn.com/image/1/BE-master_listing_f47a85_f47a856ec8f4004950834a97a1c77a52.jpg/715x480/1920x1080/2/f799",
      "order": 0
    }
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "data": {
        "id": 23895218
      }
    }

Estimate report 

Retrieve an estimate report
/valuations/{id}/report/{language}.pdf

This endpoint is used to download an estimate report for the given valuation and language.

  • Parameters
  • id
    number (required) Example: 1

    ID of the valuation

    language
    string (required) Example: EN

    Language of the report

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/pdf
  • Response  404
  • Headers
    Content-Type: application/json
    Body
    {
      "errors": [
        {
          "message": "Resource not found",
          "type": "API_Exception_NotFoundException",
        }
      ]
    }

Custom estimate report 

Custom estimate report properties
  • 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.

Download a custom report
/valuations/{id}/custom-report/{language}.pdf

This endpoint is used to download a custom report for the given valuation and language.

  • Parameters
  • id
    number (required) Example: 1

    ID of the valuation

    language
    string (required) Example: EN

    Language of the report

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
    Body
    {
      "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
    }
  • Response  200
  • Headers
    Content-Type: application/pdf
  • Response  404
  • Headers
    Content-Type: application/json
    Body
    {
      "errors": [
        {
          "message": "Resource not found",
          "type": "API_Exception_NotFoundException",
        }
      ]
    }
Next  Previous

Valuations Data 

Market insights data 

Retrieve market insights data
/valuations/{id}/data/market-insights

This endpoint is used to retrieve the market insights data for the given valuation.

Response properties

  • 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.

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
    Body
    {
      "estateType": "HOUSE"
    }
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "onlineForSaleListings": {
        "HOUSE": 3965,
        "APARTMENT": 7574
      },
      "onlineForRentListings": {
        "HOUSE": 246,
        "APARTMENT": 913
      },
      "onlineListingsAccuracy": "LOCALITY",
      "offlineForSaleListings": {
        "HOUSE": 62392,
        "APARTMENT": 81145
      },
      "offlineForRentListings": {
        "HOUSE": 14972,
        "APARTMENT": 56418
      },
      "offlineListingsAccuracy": "LOCALITY",
      "listingsForSaleOverTime": {
        "0000-00-00": 1854,
        "2012-03-01": 1,
        "2012-08-01": 1,
        "2013-02-01": 1,
        "2013-03-01": 6,
        "2013-04-01": 3,
        "2013-05-01": 1,
        "2013-06-01": 1,
        "2013-07-01": 1,
        "2013-08-01": 5,
        "2013-09-01": 27,
        "2013-10-01": 29,
        "2013-11-01": 21,
        "2013-12-01": 19,
        "2014-01-01": 16,
        "2014-02-01": 15,
        "2014-03-01": 26,
        "2014-04-01": 23,
        "2014-05-01": 24,
        "2014-06-01": 26,
        "2014-07-01": 15,
        "2014-08-01": 15,
        "2014-09-01": 25,
        "2014-10-01": 33,
        "2014-11-01": 18,
        "2014-12-01": 18,
        "2015-01-01": 17,
        "2015-02-01": 16,
        "2015-03-01": 25,
        "2015-04-01": 28,
        "2015-05-01": 31,
        "2015-06-01": 34,
        "2015-07-01": 20,
        "2015-08-01": 23,
        "2015-09-01": 31,
        "2015-10-01": 21,
        "2015-11-01": 15,
        "2015-12-01": 9,
        "2016-01-01": 12,
        "2016-02-01": 17,
        "2016-03-01": 17,
        "2016-04-01": 15,
        "2016-05-01": 11,
        "2016-06-01": 14,
        "2016-07-01": 18,
        "2016-08-01": 22,
        "2016-09-01": 22,
        "2016-10-01": 36,
        "2016-11-01": 28,
        "2016-12-01": 17,
        "2017-01-01": 23,
        "2017-02-01": 18,
        "2017-03-01": 48,
        "2017-04-01": 22,
        "2017-05-01": 30,
        "2017-06-01": 24,
        "2017-07-01": 13,
        "2017-08-01": 18,
        "2017-09-01": 15,
        "2017-10-01": 23,
        "2017-11-01": 19,
        "2017-12-01": 16,
        "2018-01-01": 11,
        "2018-02-01": 13,
        "2018-03-01": 9,
        "2018-04-01": 22,
        "2018-05-01": 15,
        "2018-06-01": 16,
        "2018-07-01": 16,
        "2018-08-01": 17,
        "2018-09-01": 13,
        "2018-10-01": 8,
        "2018-11-01": 22,
        "2018-12-01": 3,
        "2019-01-01": 13,
        "2019-02-01": 23,
        "2019-03-01": 11,
        "2019-04-01": 15,
        "2019-05-01": 26,
        "2019-06-01": 8,
        "2019-07-01": 8,
        "2019-08-01": 19,
        "2019-09-01": 19,
        "2019-10-01": 32,
        "2019-11-01": 29,
        "2019-12-01": 23,
        "2020-01-01": 44,
        "2020-02-01": 13,
        "2020-03-01": 19,
        "2020-04-01": 17,
        "2020-05-01": 51,
        "2020-06-01": 30,
        "2020-07-01": 57,
        "2020-08-01": 16,
        "2020-09-01": 8,
        "2020-10-01": 16,
        "2020-11-01": 7,
        "2020-12-01": 17,
        "2021-01-01": 22,
        "2021-02-01": 10,
        "2021-03-01": 13,
        "2021-04-01": 24,
        "2021-05-01": 20,
        "2021-06-01": 29,
        "2021-07-01": 10,
        "2021-08-01": 14,
        "2021-09-01": 22,
        "2021-10-01": 70,
        "2021-11-01": 14,
        "2021-12-01": 38,
        "2022-01-01": 36,
        "2022-02-01": 31,
        "2022-03-01": 28,
        "2022-04-01": 31,
        "2022-05-01": 46,
        "2022-06-01": 62,
        "2022-07-01": 34,
        "2022-08-01": 39,
        "2022-09-01": 43,
        "2022-10-01": 84,
        "2022-11-01": 120,
        "2022-12-01": 48,
        "2023-01-01": 94,
        "2023-02-01": 53,
        "2023-03-01": 78,
        "2023-04-01": 51,
        "2023-05-01": 81,
        "2023-06-01": 82,
        "2023-07-01": 44,
        "2023-08-01": 122,
        "2023-09-01": 173,
        "2023-10-01": 176,
        "2023-11-01": 200,
        "2023-12-01": 126,
        "2024-01-01": 93
      },
      "listingsForRentOverTime": {
        "0000-00-00": 359,
        "2013-07-01": 1,
        "2013-08-01": 1,
        "2013-09-01": 1,
        "2013-10-01": 4,
        "2013-11-01": 4,
        "2013-12-01": 1,
        "2014-01-01": 12,
        "2014-02-01": 3,
        "2014-03-01": 10,
        "2014-04-01": 6,
        "2014-05-01": 8,
        "2014-06-01": 3,
        "2014-07-01": 2,
        "2014-08-01": 4,
        "2014-09-01": 8,
        "2014-10-01": 3,
        "2014-11-01": 2,
        "2014-12-01": 2,
        "2015-01-01": 8,
        "2015-02-01": 4,
        "2015-03-01": 3,
        "2015-04-01": 1,
        "2015-05-01": 7,
        "2015-06-01": 3,
        "2015-07-01": 10,
        "2015-08-01": 4,
        "2015-09-01": 5,
        "2015-10-01": 10,
        "2015-11-01": 4,
        "2015-12-01": 4,
        "2016-01-01": 11,
        "2016-02-01": 4,
        "2016-03-01": 3,
        "2016-04-01": 7,
        "2016-05-01": 8,
        "2016-06-01": 2,
        "2016-07-01": 9,
        "2016-08-01": 11,
        "2016-09-01": 11,
        "2016-10-01": 6,
        "2016-11-01": 11,
        "2016-12-01": 4,
        "2017-01-01": 9,
        "2017-02-01": 7,
        "2017-03-01": 8,
        "2017-04-01": 11,
        "2017-05-01": 3,
        "2017-06-01": 2,
        "2017-07-01": 11,
        "2017-08-01": 7,
        "2017-09-01": 2,
        "2017-10-01": 4,
        "2017-11-01": 2,
        "2017-12-01": 4,
        "2018-01-01": 2,
        "2018-03-01": 2,
        "2018-04-01": 7,
        "2018-05-01": 4,
        "2018-06-01": 8,
        "2018-07-01": 5,
        "2018-08-01": 4,
        "2018-11-01": 3,
        "2018-12-01": 2,
        "2019-01-01": 6,
        "2019-02-01": 5,
        "2019-03-01": 4,
        "2019-04-01": 2,
        "2019-05-01": 4,
        "2019-06-01": 5,
        "2019-07-01": 5,
        "2019-08-01": 2,
        "2019-10-01": 6,
        "2019-11-01": 3,
        "2019-12-01": 2,
        "2020-01-01": 2,
        "2020-02-01": 2,
        "2020-05-01": 4,
        "2020-06-01": 4,
        "2020-07-01": 2,
        "2020-11-01": 3,
        "2020-12-01": 1,
        "2021-01-01": 5,
        "2021-02-01": 2,
        "2021-03-01": 2,
        "2021-04-01": 2,
        "2021-05-01": 1,
        "2021-06-01": 2,
        "2021-07-01": 2,
        "2021-08-01": 7,
        "2021-09-01": 3,
        "2021-10-01": 1,
        "2021-11-01": 4,
        "2021-12-01": 2,
        "2022-01-01": 3,
        "2022-03-01": 10,
        "2022-04-01": 12,
        "2022-05-01": 5,
        "2022-06-01": 5,
        "2022-07-01": 6,
        "2022-08-01": 1,
        "2022-09-01": 6,
        "2022-11-01": 4,
        "2022-12-01": 6,
        "2023-01-01": 7,
        "2023-02-01": 3,
        "2023-03-01": 18,
        "2023-04-01": 11,
        "2023-05-01": 4,
        "2023-06-01": 8,
        "2023-07-01": 19,
        "2023-08-01": 24,
        "2023-09-01": 3,
        "2023-10-01": 9,
        "2023-11-01": 2,
        "2023-12-01": 21,
        "2024-01-01": 3
      },
      "listingsOverTimeAccuracy": "SUBLOCALITY",
      "timeOnMarketOverTimeForSale": {
        "2013-09-01": 207.25619834711,
        "2013-10-01": 96.348258706468,
        "2013-11-01": 75.820433436533,
        "2013-12-01": 74.40625,
        "2014-01-01": 73.306160547604,
        "2014-02-01": 72.056965302952,
        "2014-03-01": 67.549403747871,
        "2014-04-01": 62.305201891597,
        "2014-05-01": 59.774386406545,
        "2014-06-01": 57.36563876652,
        "2014-07-01": 54.971052631579,
        "2014-08-01": 54.367643497215,
        "2014-09-01": 54.746654968195,
        "2014-10-01": 54.669139176264,
        "2014-11-01": 57.709770668722,
        "2014-12-01": 59.276080691643,
        "2015-01-01": 58.739197234492,
        "2015-02-01": 58.176797698945,
        "2015-03-01": 55.967001706808,
        "2015-04-01": 54.954692556634,
        "2015-05-01": 55.229304167452,
        "2015-06-01": 53.47358490566,
        "2015-07-01": 53.016766020864,
        "2015-08-01": 53.979186557189,
        "2015-09-01": 54.07940117491,
        "2015-10-01": 53.938429279451,
        "2015-11-01": 54.186824189027,
        "2015-12-01": 53.538922155689,
        "2016-01-01": 54.751773049645,
        "2016-02-01": 54.051139864449,
        "2016-03-01": 54.522885165509,
        "2016-04-01": 54.999587798846,
        "2016-05-01": 55.826229508197,
        "2016-06-01": 54.533982638154,
        "2016-07-01": 55.466241477898,
        "2016-08-01": 56.131063640409,
        "2016-09-01": 53.829585537919,
        "2016-10-01": 51.555629285556,
        "2016-11-01": 49.102148080439,
        "2016-12-01": 47.707572383073,
        "2017-01-01": 49.469452694103,
        "2017-02-01": 46.682890222985,
        "2017-03-01": 45.19848812095,
        "2017-04-01": 43.497775894938,
        "2017-05-01": 45.206546707504,
        "2017-06-01": 43.142697466468,
        "2017-07-01": 43.115703971119,
        "2017-08-01": 43.621364452424,
        "2017-09-01": 43.921103496749,
        "2017-10-01": 57.195729537367,
        "2017-11-01": 58.792560103964,
        "2017-12-01": 58.708168747037,
        "2018-01-01": 59.841577649959,
        "2018-02-01": 58.556757715502,
        "2018-03-01": 60.81876254791,
        "2018-04-01": 73.882682484759,
        "2018-05-01": 74.157075152336,
        "2018-06-01": 74.681277860327,
        "2018-07-01": 77.64244704019,
        "2018-08-01": 80.471639950678,
        "2018-09-01": 80.822393020357,
        "2018-10-01": 81.149651236525,
        "2018-11-01": 66.675466545289,
        "2018-12-01": 65.169652982536,
        "2019-01-01": 66.804619373085,
        "2019-02-01": 65.543847566575,
        "2019-03-01": 65.188924387646,
        "2019-04-01": 61.385922330097,
        "2019-05-01": 44.028867839423,
        "2019-06-01": 44.02067297119,
        "2019-07-01": 45.002502844141,
        "2019-08-01": 47.001079680415,
        "2019-09-01": 46.084252971138,
        "2019-10-01": 43.982537834691,
        "2019-11-01": 43.248423005566,
        "2019-12-01": 41.747643362137,
        "2020-01-01": 46.961856444946,
        "2020-02-01": 47.296811271783,
        "2020-03-01": 48.366151634926,
        "2020-04-01": 48.778106508876,
        "2020-05-01": 50.661709337349,
        "2020-06-01": 50.611454239191,
        "2020-07-01": 52.757222222222,
        "2020-08-01": 52.337413517829,
        "2020-09-01": 50.80928208847,
        "2020-10-01": 52.521370479322,
        "2020-11-01": 54.813957759412,
        "2020-12-01": 55.613006597549,
        "2021-01-01": 54.753983885407,
        "2021-02-01": 49.290823699422,
        "2021-03-01": 48.219226478245,
        "2021-04-01": 50.112590127565,
        "2021-05-01": 47.984109589041,
        "2021-06-01": 47.844135534318,
        "2021-07-01": 47.481185658502,
        "2021-08-01": 46.280689029918,
        "2021-09-01": 45.69578641482,
        "2021-10-01": 45.43357400722,
        "2021-11-01": 44.972932888395,
        "2021-12-01": 44.229337304542,
        "2022-01-01": 45.680058171242,
        "2022-02-01": 45.419547748084,
        "2022-03-01": 46.684415584416,
        "2022-04-01": 46.26123696512,
        "2022-05-01": 42.39340235129,
        "2022-06-01": 42.543222166916,
        "2022-07-01": 40.772668602775,
        "2022-08-01": 41.363419293219,
        "2022-09-01": 41.08467992542,
        "2022-10-01": 41.075127644055,
        "2022-11-01": 41.155604395604,
        "2022-12-01": 41.331658291457,
        "2023-01-01": 41.905249217433,
        "2023-02-01": 40.830190916637,
        "2023-03-01": 41.504075787618,
        "2023-04-01": 41.104725692558,
        "2023-05-01": 42.290096767552,
        "2023-06-01": 43.43666567784,
        "2023-07-01": 42.804057212303,
        "2023-08-01": 42.753829711436,
        "2023-09-01": 41.22387576836,
        "2023-10-01": 39.790076614374,
        "2023-11-01": 38.603926019897,
        "2023-12-01": 37.305687349806,
        "2024-01-01": 36.115891866086,
        "2024-02-01": 35.341217005373,
        "2024-03-01": 34.985872493265,
        "2024-04-01": 34.487821939587
      },
      "timeOnMarketOverTimeForSaleAccuracy": "LOCALITY",
      "timeOnMarketOverTimeForRent": {
        "2013-09-01": 116.7676056338,
        "2013-10-01": 84.013824884793,
        "2013-11-01": 70.91095890411,
        "2013-12-01": 66.961111111111,
        "2014-01-01": 59.718244803695,
        "2014-02-01": 55.831144465291,
        "2014-03-01": 50.975609756098,
        "2014-04-01": 44.488210818308,
        "2014-05-01": 39.687353629977,
        "2014-06-01": 39.10475161987,
        "2014-07-01": 34.403299725023,
        "2014-08-01": 33.325523012552,
        "2014-09-01": 31.849462365591,
        "2014-10-01": 30.392424242424,
        "2014-11-01": 32.19423929099,
        "2014-12-01": 32.856083086053,
        "2015-01-01": 32.484202792065,
        "2015-02-01": 32.826118326118,
        "2015-03-01": 31.830802603037,
        "2015-04-01": 33.026447462473,
        "2015-05-01": 33.375354107649,
        "2015-06-01": 32.627533193571,
        "2015-07-01": 31.551006711409,
        "2015-08-01": 31.701165181631,
        "2015-09-01": 30.997943797121,
        "2015-10-01": 32.553679945982,
        "2015-11-01": 31.785664578984,
        "2015-12-01": 30.445467422096,
        "2016-01-01": 30.015558698727,
        "2016-02-01": 29.318244170096,
        "2016-03-01": 29.978171896317,
        "2016-04-01": 30.120265780731,
        "2016-05-01": 29.19305019305,
        "2016-06-01": 28.037878787879,
        "2016-07-01": 28.839251129761,
        "2016-08-01": 29.551020408163,
        "2016-09-01": 28.797717184528,
        "2016-10-01": 29.129396984925,
        "2016-11-01": 27.231738035264,
        "2016-12-01": 28.023564954683,
        "2017-01-01": 30.514076576577,
        "2017-02-01": 30.14093598709,
        "2017-03-01": 30.66335078534,
        "2017-04-01": 37.390617742685,
        "2017-05-01": 39.77157148812,
        "2017-06-01": 39.254807692308,
        "2017-07-01": 39.547088706526,
        "2017-08-01": 39.565166340509,
        "2017-09-01": 39.361489191353,
        "2017-10-01": 48.584375,
        "2017-11-01": 49.196506550218,
        "2017-12-01": 49.74850059976,
        "2018-01-01": 50.027431421446,
        "2018-02-01": 49.863779882724,
        "2018-03-01": 51.573282075925,
        "2018-04-01": 57.929976019185,
        "2018-05-01": 53.327859879584,
        "2018-06-01": 52.715850515464,
        "2018-07-01": 55.810419681621,
        "2018-08-01": 59.267405063291,
        "2018-09-01": 60.22159548751,
        "2018-10-01": 61.859247135843,
        "2018-11-01": 45.331288343558,
        "2018-12-01": 45.26455026455,
        "2019-01-01": 45.802513464991,
        "2019-02-01": 45.063268892794,
        "2019-03-01": 45.064144736842,
        "2019-04-01": 43.6984375,
        "2019-05-01": 31.789252728799,
        "2019-06-01": 31.030105777055,
        "2019-07-01": 30.84635193133,
        "2019-08-01": 31.822805578343,
        "2019-09-01": 31.083876221498,
        "2019-10-01": 29.866459627329,
        "2019-11-01": 29.579142011834,
        "2019-12-01": 27.672614429791,
        "2020-01-01": 31.74794315632,
        "2020-02-01": 32.466960352423,
        "2020-03-01": 33.549893842887,
        "2020-04-01": 33.60972017673,
        "2020-05-01": 35.334072431633,
        "2020-06-01": 36.76204379562,
        "2020-07-01": 38.289572393098,
        "2020-08-01": 39.122419928826,
        "2020-09-01": 38.104915627293,
        "2020-10-01": 39.1875,
        "2020-11-01": 40.210815047022,
        "2020-12-01": 40.535986452159,
        "2021-01-01": 39.871836734694,
        "2021-02-01": 35.004233700254,
        "2021-03-01": 35.456345634563,
        "2021-04-01": 38.5592760181,
        "2021-05-01": 37.14005352364,
        "2021-06-01": 36.453071672355,
        "2021-07-01": 34.50471293916,
        "2021-08-01": 32.806615776081,
        "2021-09-01": 30.669779286927,
        "2021-10-01": 31.102253032929,
        "2021-11-01": 31.919650655022,
        "2021-12-01": 32.185053380783,
        "2022-01-01": 33.842546063652,
        "2022-02-01": 34.583044982699,
        "2022-03-01": 36.3425,
        "2022-04-01": 35.695579649708,
        "2022-05-01": 32.95775792039,
        "2022-06-01": 33.51137254902,
        "2022-07-01": 31.633617350891,
        "2022-08-01": 32.798325722983,
        "2022-09-01": 33.998443579767,
        "2022-10-01": 35.222392638037,
        "2022-11-01": 35.502336448598,
        "2022-12-01": 34.884479092842,
        "2023-01-01": 35.077643908969,
        "2023-02-01": 34.245358090186,
        "2023-03-01": 35.094890510949,
        "2023-04-01": 34.357312722949,
        "2023-05-01": 34.820527201346,
        "2023-06-01": 35.760508849558,
        "2023-07-01": 35.465091863517,
        "2023-08-01": 35.738572162301,
        "2023-09-01": 34.811100292113,
        "2023-10-01": 33.25011165699,
        "2023-11-01": 32.316814908937,
        "2023-12-01": 31.358422939068,
        "2024-01-01": 30.061738104601,
        "2024-02-01": 29.752219220378,
        "2024-03-01": 29.430923694779,
        "2024-04-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": {
        "1980-01-01": 23702.684147099,
        "1980-04-01": 24391.896432093,
        "1980-07-01": 24522.389803893,
        "1980-10-01": 24617.079940109,
        "1981-01-01": 25076.397765037,
        "1981-04-01": 24933.655917905,
        "1981-07-01": 25340.211079867,
        "1981-10-01": 26443.044954899,
        "1982-01-01": 27504.422451886,
        "1982-04-01": 29219.208998284,
        "1982-07-01": 29980.027754446,
        "1982-10-01": 30847.314026951,
        "1983-01-01": 32327.966256436,
        "1983-04-01": 33243.304239857,
        "1983-07-01": 36218.270459774,
        "1983-10-01": 38413.103020122,
        "1984-01-01": 38900.215462148,
        "1984-04-01": 41235.434393602,
        "1984-07-01": 41046.05412117,
        "1984-10-01": 41996.253149764,
        "1985-01-01": 43234.291348647,
        "1985-04-01": 42484.778877406,
        "1985-07-01": 44323.463462732,
        "1985-10-01": 44645.692582989,
        "1986-01-01": 45252.934302304,
        "1986-04-01": 46493.327977212,
        "1986-07-01": 45999.620202315,
        "1986-10-01": 46721.809151663,
        "1987-01-01": 46396.753460176,
        "1987-04-01": 45861.118212029,
        "1987-07-01": 46643.136252419,
        "1987-10-01": 45327.838439908,
        "1988-01-01": 45761.246028558,
        "1988-04-01": 44430.40207428,
        "1988-07-01": 42794.759522331,
        "1988-10-01": 45087.57988533,
        "1989-01-01": 43994.167914399,
        "1989-04-01": 44151.513712888,
        "1989-07-01": 46181.934046671,
        "1989-10-01": 44732.845195924,
        "1990-01-01": 45645.82770332,
        "1990-04-01": 47747.854508272,
        "1990-07-01": 46101.847861812,
        "1990-10-01": 46987.035752109,
        "1991-01-01": 46521.593689515,
        "1991-04-01": 45733.45141146,
        "1991-07-01": 45943.088777709,
        "1991-10-01": 45966.643537962,
        "1992-01-01": 46805.193002958,
        "1992-04-01": 47892.009641018,
        "1992-07-01": 48834.671146332,
        "1992-10-01": 49171.03312274,
        "1993-01-01": 51091.688273747,
        "1993-04-01": 52570.927217617,
        "1993-07-01": 52162.487674835,
        "1993-10-01": 52651.955592886,
        "1994-01-01": 52254.35123982,
        "1994-04-01": 50547.102216704,
        "1994-07-01": 52177.091626191,
        "1994-10-01": 53386.864112771,
        "1995-01-01": 53648.793046781,
        "1995-04-01": 55053.598948253,
        "1995-07-01": 56165.854727386,
        "1995-10-01": 55646.236716211,
        "1996-01-01": 57793.959756053,
        "1996-04-01": 60185.710112113,
        "1996-07-01": 61777.540809992,
        "1996-10-01": 63837.169046489,
        "1997-01-01": 64546.167330095,
        "1997-04-01": 65673.027060585,
        "1997-07-01": 65934.013804185,
        "1997-10-01": 66686.352846657,
        "1998-01-01": 68335.186064347,
        "1998-04-01": 67920.622283899,
        "1998-07-01": 70977.559069496,
        "1998-10-01": 73964.30266954,
        "1999-01-01": 74616.76952854,
        "1999-04-01": 78384.117883358,
        "1999-07-01": 79709.779790381,
        "1999-10-01": 82642.347441844,
        "2000-01-01": 87248.716356864,
        "2000-04-01": 88955.96537998,
        "2000-07-01": 90166.68005697,
        "2000-10-01": 91433.926158566,
        "2001-01-01": 92860.40243947,
        "2001-04-01": 96135.456305007,
        "2001-07-01": 96082.693642041,
        "2001-10-01": 97601.504583136,
        "2002-01-01": 98395.300003652,
        "2002-04-01": 99553.252017675,
        "2002-07-01": 104508.23138444,
        "2002-10-01": 104653.32870759,
        "2003-01-01": 108704.74747106,
        "2003-04-01": 108704.74747106,
        "2003-07-01": 109256.39995618,
        "2003-10-01": 111928.45195924,
        "2004-01-01": 111041.37968813,
        "2004-04-01": 113027.04597743,
        "2004-07-01": 114525.59982471,
        "2004-10-01": 116248.39498959,
        "2005-01-01": 119172.48292736,
        "2005-04-01": 120841.57323887,
        "2005-07-01": 123878.25293065,
        "2005-10-01": 126478.69846255,
        "2006-01-01": 128598.62688529,
        "2006-04-01": 132297.66643538,
        "2006-07-01": 135391.34864697,
        "2006-10-01": 138540.14899755,
        "2007-01-01": 140442.43143556,
        "2007-04-01": 140896.56721323,
        "2007-07-01": 141736.52996385,
        "2007-10-01": 143811.23324691,
        "2008-01-01": 144010.50651864,
        "2008-04-01": 145066.70196837,
        "2008-07-01": 149176.06544206,
        "2008-10-01": 153341.96034036,
        "2009-01-01": 158306.83270642,
        "2009-04-01": 165965.8985502,
        "2009-07-01": 168752.42668809,
        "2009-10-01": 170470.51090092,
        "2010-01-01": 172980.50615345,
        "2010-04-01": 174789.51174086,
        "2010-07-01": 177680.15191907,
        "2010-10-01": 182351.06087719,
        "2011-01-01": 188464.46335318,
        "2011-04-01": 201566.09210094,
        "2011-07-01": 216694.84351605,
        "2011-10-01": 232482.18602783,
        "2012-01-01": 249822.72943067,
        "2012-04-01": 260542.50082168,
        "2012-07-01": 266947.9823248,
        "2012-10-01": 276564.91984078,
        "2013-01-01": 283446.207501,
        "2013-04-01": 293693.94149655,
        "2013-07-01": 305846.78450133,
        "2013-10-01": 314380.67414089,
        "2014-01-01": 322459.48581237,
        "2014-04-01": 326112.82912756,
        "2014-07-01": 333082.68268634,
        "2014-10-01": 337586.35284666,
        "2015-01-01": 343280.95168535,
        "2015-04-01": 352244.48015192,
        "2015-07-01": 355838.46547128,
        "2015-10-01": 358977.84391776,
        "2016-01-01": 363462.67026988,
        "2016-04-01": 362742.83679655,
        "2016-07-01": 366111.6386079,
        "2016-10-01": 371928.72219991,
        "2017-01-01": 376517.66059234,
        "2017-04-01": 385417.12011102,
        "2017-07-01": 390647.21907753,
        "2017-10-01": 394417.39400358,
        "2018-01-01": 402118.85841581,
        "2018-04-01": 406902.35912793,
        "2018-07-01": 411014.07807764,
        "2018-10-01": 421330.12087792,
        "2019-01-01": 426110.3239236,
        "2019-04-01": 433193.7114268,
        "2019-07-01": 439337.73509112,
        "2019-10-01": 438901.50093123,
        "2020-01-01": 442857.75846328,
        "2020-04-01": 437685.60420699,
        "2020-07-01": 438523.21148158,
        "2020-10-01": 441179.24624767,
        "2021-01-01": 441467.08541796,
        "2021-04-01": 449024.39469744,
        "2021-07-01": 456244.3998101,
        "2021-10-01": 468968.68129862,
        "2022-01-01": 475068.42201366,
        "2022-04-01": 481320.32647993,
        "2022-07-01": 482747.74495125,
        "2022-10-01": 482791.08571011,
        "2023-01-01": 488072.53405398,
        "2023-04-01": 496811.82120294,
        "2023-07-01": 504648.48993901
      },
      "priceEvolutionOnDistrict": {
        "2014-02-01": null,
        "2014-03-01": null,
        "2014-04-01": null,
        "2014-05-01": null,
        "2014-06-01": null,
        "2014-07-01": null,
        "2014-08-01": null,
        "2014-09-01": null,
        "2014-10-01": null,
        "2014-11-01": null,
        "2014-12-01": 596387.78571429,
        "2015-01-01": 566961.93333333,
        "2015-02-01": 559651.8125,
        "2015-03-01": 545292.22727273,
        "2015-04-01": null,
        "2015-05-01": null,
        "2015-06-01": null,
        "2015-07-01": 530257.16,
        "2015-08-01": 520978.85185185,
        "2015-09-01": 513945.82758621,
        "2015-10-01": 480357.10714286,
        "2015-11-01": 470462.70967742,
        "2015-12-01": null,
        "2016-01-01": 471644.8,
        "2016-02-01": null,
        "2016-03-01": 449885.78125,
        "2016-04-01": 402544.83333333,
        "2016-05-01": 410531.59375,
        "2016-06-01": 411032.61290323,
        "2016-07-01": 413914.6,
        "2016-08-01": null,
        "2016-09-01": 427621.91891892,
        "2016-10-01": null,
        "2016-11-01": null,
        "2016-12-01": null,
        "2017-01-01": 409853.26470588,
        "2017-02-01": 409515.48484848,
        "2017-03-01": 405389.19444444,
        "2017-04-01": 394414.90243902,
        "2017-05-01": 398954.825,
        "2017-06-01": 405563.45945946,
        "2017-07-01": 381734.47619048,
        "2017-08-01": 386191.41463415,
        "2017-09-01": 383114.66666667,
        "2017-10-01": 383163.64,
        "2017-11-01": 380454.54901961,
        "2017-12-01": null,
        "2018-01-01": 388259.19148936,
        "2018-02-01": 373070.71111111,
        "2018-03-01": null,
        "2018-04-01": 376404.04444444,
        "2018-05-01": null,
        "2018-06-01": null,
        "2018-07-01": null,
        "2018-08-01": null,
        "2018-09-01": 372663.22727273,
        "2018-10-01": null,
        "2018-11-01": 385154.55,
        "2018-12-01": null,
        "2019-01-01": null,
        "2019-02-01": 392681.82352941,
        "2019-03-01": 392088.23529412,
        "2019-04-01": 376363.63636364,
        "2019-05-01": 404071.42857143,
        "2019-06-01": null,
        "2019-07-01": null,
        "2019-08-01": null,
        "2019-09-01": 392612.5,
        "2019-10-01": 387584,
        "2019-11-01": 370304,
        "2019-12-01": 370224,
        "2020-01-01": 361762.96296296,
        "2020-02-01": 367953.33333333,
        "2020-03-01": 361353.33333333,
        "2020-04-01": 366420,
        "2020-05-01": 358362.5,
        "2020-06-01": 424655.55555556,
        "2020-07-01": 449583.78378378,
        "2020-08-01": 445421.62162162,
        "2020-09-01": 459169.23076923,
        "2020-10-01": 475942.85714286,
        "2020-11-01": 492093.75,
        "2020-12-01": 499935.48387097,
        "2021-01-01": null,
        "2021-02-01": 509000,
        "2021-03-01": null,
        "2021-04-01": 521892.85714286,
        "2021-05-01": 531038.46153846,
        "2021-06-01": 556000,
        "2021-07-01": 562000,
        "2021-08-01": 573040,
        "2021-09-01": null,
        "2021-10-01": 496181.81818182,
        "2021-11-01": 458285.71428571,
        "2021-12-01": 385344.82758621,
        "2022-01-01": 320828.57142857,
        "2022-02-01": 373184.21052632,
        "2022-03-01": 366075,
        "2022-04-01": 351617.0212766,
        "2022-05-01": 334578.94736842,
        "2022-06-01": 317671.42857143,
        "2022-07-01": 329587.5,
        "2022-08-01": 318821.42857143,
        "2022-09-01": 306586.95652174,
        "2022-10-01": 302639.17525773,
        "2022-11-01": 295823.00884956,
        "2022-12-01": 309417.39130435,
        "2023-01-01": 328101.85185185,
        "2023-02-01": 339317.30769231,
        "2023-03-01": 328339.80582524,
        "2023-04-01": null,
        "2023-05-01": 337590.47619048,
        "2023-06-01": 344285.71428571,
        "2023-07-01": null,
        "2023-08-01": 365382.9787234,
        "2023-09-01": 380876.54320988,
        "2023-10-01": 384736.11111111,
        "2023-11-01": 401185.71428571,
        "2023-12-01": 443739.13043478,
        "2024-01-01": null,
        "2024-02-01": null,
        "2024-03-01": null,
        "2024-04-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": 277889.37931034,
        "2014-08-01": 277056,
        "2014-09-01": 273264.64864865,
        "2014-10-01": 276554.86238532,
        "2014-11-01": 275215.93220339,
        "2014-12-01": 273074.64566929,
        "2015-01-01": 273822.73062731,
        "2015-02-01": 270103.17343173,
        "2015-03-01": 274419.87544484,
        "2015-04-01": 277460.30035336,
        "2015-05-01": 278207.14776632,
        "2015-06-01": 275416.21262458,
        "2015-07-01": 277139.93220339,
        "2015-08-01": 282124.68646865,
        "2015-09-01": 283409.96865204,
        "2015-10-01": 289180.25396825,
        "2015-11-01": 294093.65319865,
        "2015-12-01": 298002.82986111,
        "2016-01-01": 300654.14590747,
        "2016-02-01": 301985.10676157,
        "2016-03-01": 303437.06405694,
        "2016-04-01": 301073.11808118,
        "2016-05-01": 309425.10629921,
        "2016-06-01": 315355.83474576,
        "2016-07-01": 325236.25909091,
        "2016-08-01": 332719.35294118,
        "2016-09-01": 331764.73515982,
        "2016-10-01": 329287.22624434,
        "2016-11-01": 323332.49779736,
        "2016-12-01": 318453.69298246,
        "2017-01-01": 317910.54771784,
        "2017-02-01": 315588.8340081,
        "2017-03-01": 319409.53790614,
        "2017-04-01": 321920.0070922,
        "2017-05-01": 315052.16891892,
        "2017-06-01": 312866.88311688,
        "2017-07-01": 313342.01954397,
        "2017-08-01": 309057.18954248,
        "2017-09-01": 306764.21404682,
        "2017-10-01": 305515,
        "2017-11-01": 309609.54063604,
        "2017-12-01": 316273.06273063,
        "2018-01-01": 318905.66037736,
        "2018-02-01": 321960.78431373,
        "2018-03-01": 331743.90243902,
        "2018-04-01": 336609.09090909,
        "2018-05-01": 334032.86384977,
        "2018-06-01": 347651.51515152,
        "2018-07-01": 345947.36842105,
        "2018-08-01": 346010.30927835,
        "2018-09-01": 358965.60846561,
        "2018-10-01": 354695.05494505,
        "2018-11-01": 358306.62983425,
        "2018-12-01": 365769.46107784,
        "2019-01-01": 359829.26829268,
        "2019-02-01": 351134.50292398,
        "2019-03-01": 346473.37278107,
        "2019-04-01": 340160,
        "2019-05-01": 328564.24581006,
        "2019-06-01": 331761.62790698,
        "2019-07-01": 339048.48484848,
        "2019-08-01": 340654.76190476,
        "2019-09-01": 342870.58823529,
        "2019-10-01": 336891.30434783,
        "2019-11-01": 351687.80487805,
        "2019-12-01": 354985.29411765,
        "2020-01-01": 361929.89300412,
        "2020-02-01": 366571.86831276,
        "2020-03-01": 373217.06557377,
        "2020-04-01": 379778.97188755,
        "2020-05-01": 379642.98233216,
        "2020-06-01": 387216.65734266,
        "2020-07-01": 386658.5748503,
        "2020-08-01": 385201.64912281,
        "2020-09-01": 386617.36144578,
        "2020-10-01": 385410.22492401,
        "2020-11-01": 390420.59546926,
        "2020-12-01": 385125.30169492,
        "2021-01-01": 383165.41891892,
        "2021-02-01": 379524.7148289,
        "2021-03-01": 381584.61538462,
        "2021-04-01": 384358.77862595,
        "2021-05-01": 379345.86466165,
        "2021-06-01": 385569.10569106,
        "2021-07-01": 387807.01754386,
        "2021-08-01": 400733.69565217,
        "2021-09-01": 397078.94736842,
        "2021-10-01": 396288.75502008,
        "2021-11-01": 399700,
        "2021-12-01": 392411.19133574,
        "2022-01-01": 390650.17301038,
        "2022-02-01": 402530.06756757,
        "2022-03-01": 403211.70886076,
        "2022-04-01": 396700,
        "2022-05-01": 390631.30193906,
        "2022-06-01": 391545.65756824,
        "2022-07-01": 390333.08823529,
        "2022-08-01": 387576.7816092,
        "2022-09-01": 380619.95708155,
        "2022-10-01": 386991.27134725,
        "2022-11-01": 386899.81884058,
        "2022-12-01": 389795.98976109,
        "2023-01-01": 397665.28213166,
        "2023-02-01": 401667.59398496,
        "2023-03-01": 402192.85714286,
        "2023-04-01": 403451.63265306,
        "2023-05-01": 409011.06870229,
        "2023-06-01": 414289.0776699,
        "2023-07-01": 417370.755886,
        "2023-08-01": 420447.76785714,
        "2023-09-01": 426372.28682171,
        "2023-10-01": 431971.31389365,
        "2023-11-01": 433612.19003115,
        "2023-12-01": 439952.87101669,
        "2024-01-01": null,
        "2024-02-01": null,
        "2024-03-01": null,
        "2024-04-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": 264722.61287935,
        "2014-08-01": 263624.58962574,
        "2014-09-01": 262755.6446281,
        "2014-10-01": 264613.64801178,
        "2014-11-01": 264166.02710639,
        "2014-12-01": 262990.64071474,
        "2015-01-01": 262058.5331224,
        "2015-02-01": 262083.48388388,
        "2015-03-01": 261653.28998649,
        "2015-04-01": 263166.66706021,
        "2015-05-01": 261462.1935867,
        "2015-06-01": 261864.86790972,
        "2015-07-01": 262866.81048308,
        "2015-08-01": 264677.95955451,
        "2015-09-01": 266578.69945045,
        "2015-10-01": 267611.30634951,
        "2015-11-01": 267029.16056166,
        "2015-12-01": 267729.15444972,
        "2016-01-01": 268544.40028606,
        "2016-02-01": 269487.99313358,
        "2016-03-01": 268344.58003335,
        "2016-04-01": 270054.55021368,
        "2016-05-01": 269960.36968375,
        "2016-06-01": 271801.50447305,
        "2016-07-01": 271735.12788592,
        "2016-08-01": 272796.34672449,
        "2016-09-01": 274625.22007042,
        "2016-10-01": 276632.34972678,
        "2016-11-01": 277577.50269107,
        "2016-12-01": 276927.80748663,
        "2017-01-01": 278050.5124451,
        "2017-02-01": 279615.83011583,
        "2017-03-01": 280545.03506829,
        "2017-04-01": 281031.06457243,
        "2017-05-01": 285236.61971831,
        "2017-06-01": 286244.26281044,
        "2017-07-01": 287633.76296762,
        "2017-08-01": 287761.54806492,
        "2017-09-01": 290198.81581765,
        "2017-10-01": 291263.93085768,
        "2017-11-01": 291172.34304362,
        "2017-12-01": 292290.28573736,
        "2018-01-01": 294290.52997523,
        "2018-02-01": 295507.00172206,
        "2018-03-01": 296775.5901168,
        "2018-04-01": 300616.62967267,
        "2018-05-01": 305238.33481872,
        "2018-06-01": 304055.51799181,
        "2018-07-01": 305374.30030668,
        "2018-08-01": 306700.38182709,
        "2018-09-01": 312709.09637681,
        "2018-10-01": 311044.09566517,
        "2018-11-01": 311010.30150754,
        "2018-12-01": 314622.43326489,
        "2019-01-01": 317756.70747591,
        "2019-02-01": 319365.72133169,
        "2019-03-01": 321259.9814299,
        "2019-04-01": 322883.30400352,
        "2019-05-01": 325135.20189003,
        "2019-06-01": 327724.71669874,
        "2019-07-01": 330331.46561195,
        "2019-08-01": 333920.96365173,
        "2019-09-01": 337261.22739281,
        "2019-10-01": 335534.27307905,
        "2019-11-01": 336505.64516129,
        "2019-12-01": 338897.28014506,
        "2020-01-01": 340691.6550035,
        "2020-02-01": 342489.05299739,
        "2020-03-01": 344456.68316832,
        "2020-04-01": 347440.53755523,
        "2020-05-01": 351178.63669591,
        "2020-06-01": 354309.38469965,
        "2020-07-01": 357076.5597148,
        "2020-08-01": 357240.4685873,
        "2020-09-01": 359962.08108578,
        "2020-10-01": 359744.53828632,
        "2020-11-01": 366772.42138365,
        "2020-12-01": 369398.34130781,
        "2021-01-01": 368804.15037594,
        "2021-02-01": 371871.68092042,
        "2021-03-01": 374330.19141914,
        "2021-04-01": 372136.43986512,
        "2021-05-01": 370937.15240834,
        "2021-06-01": 372242.56421435,
        "2021-07-01": 372991.98573038,
        "2021-08-01": 372000.83675843,
        "2021-09-01": 373067.41362439,
        "2021-10-01": 374033.92630994,
        "2021-11-01": 375315.53543599,
        "2021-12-01": 374143.51342466,
        "2022-01-01": 374188.7196956,
        "2022-02-01": 376228.9226256,
        "2022-03-01": 378300.92144374,
        "2022-04-01": 378908.53813773,
        "2022-05-01": 383566.11939335,
        "2022-06-01": 385025.77299954,
        "2022-07-01": 386872.0903403,
        "2022-08-01": 387766.51305862,
        "2022-09-01": 388903.41110809,
        "2022-10-01": 390608.41278845,
        "2022-11-01": 394983.66963855,
        "2022-12-01": 399215.74653142,
        "2023-01-01": 406938.22843363,
        "2023-02-01": 411600.06357279,
        "2023-03-01": 416738.555667,
        "2023-04-01": 419802.05318733,
        "2023-05-01": 423643.87554891,
        "2023-06-01": 427187.98185941,
        "2023-07-01": 431008.78057065,
        "2023-08-01": 434253.40322208,
        "2023-09-01": 438133.39343921,
        "2023-10-01": 444159.32765152,
        "2023-11-01": 449118.21590976,
        "2023-12-01": 453223.29355471,
        "2024-01-01": null,
        "2024-02-01": null,
        "2024-03-01": null,
        "2024-04-01": null
      },
      "priceEvolutionOnAdmin2": {
        "2014-02-01": null,
        "2014-03-01": 281708.15753735,
        "2014-04-01": 282078.43535032,
        "2014-05-01": 283233.40526316,
        "2014-06-01": 281729.42723361,
        "2014-07-01": 280284.39089326,
        "2014-08-01": 280842.63191197,
        "2014-09-01": 279830.53182695,
        "2014-10-01": 279603.35917313,
        "2014-11-01": 278727.04081633,
        "2014-12-01": 278017.21922385,
        "2015-01-01": 278654.69061876,
        "2015-02-01": 281444.26623897,
        "2015-03-01": 278692.78119754,
        "2015-04-01": 283118.11865313,
        "2015-05-01": 283225.6308758,
        "2015-06-01": 284326.94610778,
        "2015-07-01": 284963.82779598,
        "2015-08-01": 287273.05479109,
        "2015-09-01": 283758.28613642,
        "2015-10-01": 284743.61943116,
        "2015-11-01": 286567.41059425,
        "2015-12-01": 282869.19294186,
        "2016-01-01": 281908.56653341,
        "2016-02-01": 285306.23830318,
        "2016-03-01": 286855.96091205,
        "2016-04-01": 287794.08990883,
        "2016-05-01": 290821.4953271,
        "2016-06-01": 292688.61878453,
        "2016-07-01": 292690.5327077,
        "2016-08-01": 297281.00242522,
        "2016-09-01": 301200.495304,
        "2016-10-01": 303613.6024486,
        "2016-11-01": 304932.73399559,
        "2016-12-01": 304202.88152389,
        "2017-01-01": 302333.10676464,
        "2017-02-01": 300426.03155184,
        "2017-03-01": 298776.85167645,
        "2017-04-01": 298078.10192024,
        "2017-05-01": 305020.4048583,
        "2017-06-01": 306280.56262158,
        "2017-07-01": 305418.2072394,
        "2017-08-01": 306091.98071084,
        "2017-09-01": 309994.84634472,
        "2017-10-01": 307083.61921098,
        "2017-11-01": 307141.35509011,
        "2017-12-01": 308872.01311145,
        "2018-01-01": 313717.22303783,
        "2018-02-01": 314775.74874034,
        "2018-03-01": 313499.9637051,
        "2018-04-01": 318721.38554217,
        "2018-05-01": 327456.5376187,
        "2018-06-01": 329157.77704702,
        "2018-07-01": 327321.16923077,
        "2018-08-01": 327792.01920192,
        "2018-09-01": 331194.73060983,
        "2018-10-01": 328239.95193752,
        "2018-11-01": 328518.80597015,
        "2018-12-01": 330605.57653209,
        "2019-01-01": 333495.27878104,
        "2019-02-01": 331743.88126801,
        "2019-03-01": 334680.7132948,
        "2019-04-01": 333713.45001385,
        "2019-05-01": 338152.69499623,
        "2019-06-01": 340817.2985782,
        "2019-07-01": 345255.64656242,
        "2019-08-01": 347108.54947166,
        "2019-09-01": 354412.23103058,
        "2019-10-01": 356688.22553897,
        "2019-11-01": 356512.42347857,
        "2019-12-01": 356531.16045845,
        "2020-01-01": 360920.26462396,
        "2020-02-01": 358241.26637555,
        "2020-03-01": 359512.25836869,
        "2020-04-01": 365250.07086168,
        "2020-05-01": 365954.52858203,
        "2020-06-01": 364620.19834296,
        "2020-07-01": 370006.57686604,
        "2020-08-01": 369996.69708929,
        "2020-09-01": 370130.19580111,
        "2020-10-01": 367394.12459622,
        "2020-11-01": 367118.9122449,
        "2020-12-01": 363875.44109003,
        "2021-01-01": 362400.19066339,
        "2021-02-01": 362714.28571429,
        "2021-03-01": 369311.17021277,
        "2021-04-01": 365579.42829077,
        "2021-05-01": 367921.43295398,
        "2021-06-01": 370757.19746233,
        "2021-07-01": 368539.71731252,
        "2021-08-01": 366464.13724967,
        "2021-09-01": 371847.39650745,
        "2021-10-01": 374617.02029703,
        "2021-11-01": 373760.8638171,
        "2021-12-01": 373039.39631783,
        "2022-01-01": 372414.0591716,
        "2022-02-01": 374758.82213251,
        "2022-03-01": 378467.94345645,
        "2022-04-01": 384617.91932059,
        "2022-05-01": 390656.19773276,
        "2022-06-01": 394942.37981589,
        "2022-07-01": 396637.35887787,
        "2022-08-01": 393678.65824016,
        "2022-09-01": 392314.32835821,
        "2022-10-01": 391564.42709035,
        "2022-11-01": 392188.15976913,
        "2022-12-01": 396226.12404468,
        "2023-01-01": 401689.95435638,
        "2023-02-01": 405907.25019749,
        "2023-03-01": 416634.63585371,
        "2023-04-01": 427618.12272832,
        "2023-05-01": 431801.76564289,
        "2023-06-01": 432503.372835,
        "2023-07-01": 434040.88214784,
        "2023-08-01": 435012.91600634,
        "2023-09-01": 434839.37508454,
        "2023-10-01": 436527.6794818,
        "2023-11-01": 439137.45008392,
        "2023-12-01": 437346.48575305,
        "2024-01-01": null,
        "2024-02-01": null,
        "2024-03-01": null,
        "2024-04-01": null
      },
      "priceEvolutionOnAdmin1": {
        "2014-02-01": 255295.0437145,
        "2014-03-01": 252050.65708419,
        "2014-04-01": 254140.19308943,
        "2014-05-01": 259000,
        "2014-06-01": 257234.96199783,
        "2014-07-01": 252436.45083933,
        "2014-08-01": 249511.11642362,
        "2014-09-01": 250725.85669782,
        "2014-10-01": 252035.12345888,
        "2014-11-01": 251182.76998547,
        "2014-12-01": 249568.22023666,
        "2015-01-01": 249000,
        "2015-02-01": 249000,
        "2015-03-01": 249000,
        "2015-04-01": 249000,
        "2015-05-01": 249000,
        "2015-06-01": 249497.24467303,
        "2015-07-01": 254259.1943958,
        "2015-08-01": 259000,
        "2015-09-01": 256772.60330579,
        "2015-10-01": 255108.05560846,
        "2015-11-01": 259481.02423411,
        "2015-12-01": 254028.05611222,
        "2016-01-01": 248018.27507017,
        "2016-02-01": 255941.2393968,
        "2016-03-01": 259760.62870394,
        "2016-04-01": 264153.99239544,
        "2016-05-01": 264115.15552614,
        "2016-06-01": 262901.0727056,
        "2016-07-01": 266076.72742688,
        "2016-08-01": 268286.51685393,
        "2016-09-01": 270750.46485682,
        "2016-10-01": 273460.00327172,
        "2016-11-01": 271846.88995215,
        "2016-12-01": 265307.42725881,
        "2017-01-01": 260786.28355705,
        "2017-02-01": 260877.45325297,
        "2017-03-01": 263068.08510638,
        "2017-04-01": 266215.71458033,
        "2017-05-01": 272931.64818158,
        "2017-06-01": 273932.6391567,
        "2017-07-01": 269607.8069771,
        "2017-08-01": 271769.62025316,
        "2017-09-01": 275000,
        "2017-10-01": 275000,
        "2017-11-01": 275000,
        "2017-12-01": 276810.25284157,
        "2018-01-01": 279466.93013784,
        "2018-02-01": 277788.09546436,
        "2018-03-01": 276837.66233766,
        "2018-04-01": 281954.65026902,
        "2018-05-01": 287521.91503709,
        "2018-06-01": 289505.51926109,
        "2018-07-01": 284695.3814219,
        "2018-08-01": 277943.68600683,
        "2018-09-01": 284121.98685172,
        "2018-10-01": 289503.6937542,
        "2018-11-01": 289238.25265643,
        "2018-12-01": 287476.41123534,
        "2019-01-01": 289854.46927374,
        "2019-02-01": 296542.00610998,
        "2019-03-01": 299000,
        "2019-04-01": 296837.86114705,
        "2019-05-01": 297042.93520687,
        "2019-06-01": 299000,
        "2019-07-01": 297307.4204947,
        "2019-08-01": 297201.36118282,
        "2019-09-01": 304497.6295041,
        "2019-10-01": 302602.11676017,
        "2019-11-01": 299000,
        "2019-12-01": 300797.3249467,
        "2020-01-01": 314115.79408138,
        "2020-02-01": 310421.25569975,
        "2020-03-01": 299448.70742716,
        "2020-04-01": 304012.69280206,
        "2020-05-01": 310729.98872604,
        "2020-06-01": 308500.75459734,
        "2020-07-01": 310403.1340356,
        "2020-08-01": 308682.66730585,
        "2020-09-01": 308626.86364568,
        "2020-10-01": 311873.30773894,
        "2020-11-01": 309381.3864236,
        "2020-12-01": 315329.82816107,
        "2021-01-01": 315777.61003933,
        "2021-02-01": 315884.8200122,
        "2021-03-01": 322441.00895037,
        "2021-04-01": 325000,
        "2021-05-01": 326794.9314113,
        "2021-06-01": 329000,
        "2021-07-01": 325042.58373206,
        "2021-08-01": 322740.34915171,
        "2021-09-01": 327237.24792408,
        "2021-10-01": 331262.43468163,
        "2021-11-01": 326968.70342772,
        "2021-12-01": 324137.19651855,
        "2022-01-01": 331187.81038375,
        "2022-02-01": 336369.63994934,
        "2022-03-01": 343945.448624,
        "2022-04-01": 349000,
        "2022-05-01": 352639.08343126,
        "2022-06-01": 360540.31504617,
        "2022-07-01": 360812.09725686,
        "2022-08-01": 352104.08855608,
        "2022-09-01": 352874.54323995,
        "2022-10-01": 352747.17749398,
        "2022-11-01": 352894.29980106,
        "2022-12-01": 359120.48969072,
        "2023-01-01": 365000,
        "2023-02-01": 365000,
        "2023-03-01": 370806.14203455,
        "2023-04-01": 381559.07932882,
        "2023-05-01": 386399.89908645,
        "2023-06-01": 384113.05776747,
        "2023-07-01": 380208.74243443,
        "2023-08-01": 380797.66536965,
        "2023-09-01": 385000,
        "2023-10-01": 387561.44411016,
        "2023-11-01": 390000,
        "2023-12-01": 387653.17625838,
        "2024-01-01": null,
        "2024-02-01": null,
        "2024-03-01": null,
        "2024-04-01": null
      }
    }
  • Response  404
  • Headers
    Content-Type: application/json
    Body
    {
      "errors": [
        {
          "message": "Resource not found",
          "type": "API_Exception_NotFoundException",
        }
      ]
    }

Mobility insights data 

Retrieve mobility data
/valuations/{id}/data/mobility

This endpoint is used to retrieve the mobility data for the given valuation.

Response properties

  • 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.

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "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"
    }
  • Response  404
  • Headers
    Content-Type: application/json
    Body
    {
      "errors": [
        {
          "message": "Resource not found",
          "type": "API_Exception_NotFoundException",
        }
      ]
    }

Neighbourhood data 

Retrieve neighbourhood data
/valuations/{id}/data/neighbourhood

This endpoint is used to retrieve the neighbourhood data for the given valuation.

Response properties

  • 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:

    • high
    • low.
  • genderDistribution (map[string, number], optional)

    Map of {key => percentage} entries.

    The possible keys are:

    • women
    • men.
  • workforceDistribution (map[string, number], optional)

    Map of {key => percentage} entries.

    The possible keys are:

    • employed
    • non-employed.
  • livingArrangementDistribution (map[string, number], optional)

    Map of {key => percentage} entries.

    The possible keys are:

    • singles
    • married
    • divorced
    • widowers.
  • relationshipDistribution (map[string, number], optional)

    Map of {key => percentage} entries.

    The possible keys are:

    • hetero
    • same-sex.
  • ageDistribution (map[string, number], optional)

    Map of {key => percentage} entries.

    The possible key formats are:

    • {lowerBound}-{upperBound}
    • {lowerBound}+.
  • familySizeDistribution (map[string, number], optional)

    Map of {key => percentage} entries.

    The possible key formats are:

    • {exactAmount}
    • {lowerBound}+.
  • culturalDiversityDistribution (map[string, number], optional)

    Map of {key => percentage} entries.

    The keys are country-dependant, possible key formats are:

    Group A:

    • foreigner
    • local

    Group B:

    • {countryName}

    Group C:

    • {continentName}.
  • 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:

    • {lowerBoundInclusive}-{upperBoundExclusive}
    • {lowerBoundInclusive}+.
  • ownershipDistribution (map[string, number], optional)

    Map of {ownership type => percentage} entries.

    The possible key formats are:

    • renter
    • owner.
  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    {
      "averageIncome": 2002.3846153846,
      "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.2
      },
      "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.1538461538,
        "2006": 1598.3076923077,
        "2007": 1661.0769230769,
        "2008": 1741.9230769231,
        "2009": 1759.6153846154,
        "2010": 1786.4615384615,
        "2011": 1846.5384615385,
        "2012": 2002.3846153846,
        "2013": 2002.3846153846
      },
      "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
      }
    }
  • Response  404
  • Headers
    Content-Type: application/json
    Body
    {
      "errors": [
        {
          "message": "Resource not found",
          "type": "API_Exception_NotFoundException",
        }
      ]
    }

Transaction data 

Retrieve transaction data
/valuations/{id}/data/similar-transactions

This endpoint is used to retrieve similar transactions for the given valuation.

Response properties

  • 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.

  • Parameters
  • id
    number (required) Example: 1

    ID of the valuation

    language
    string (required) Example: EN

    Language of the report

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
    Body
    {
      "way": "SALE"
    }
  • Response  200
  • Headers
    Content-Type: application/json
    Body
    [
      {
        "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
      }
    ]
  • Response  404
  • Headers
    Content-Type: application/json
    Body
    {
      "errors": [
        {
          "message": "Resource not found",
          "type": "API_Exception_NotFoundException",
        }
      ]
    }
Next  Previous

Valuations Imagery 

Cadastral map image 

Download image
/valuations/{id}/imagery/map/cadastral.png

This endpoint is used to download the cadastral map image for the given valuation.

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/png
  • Response  404
  • Headers
    Content-Type: application/json
    Body
    {
      "errors": [
        {
          "message": "Resource not found",
          "type": "API_Exception_NotFoundException",
        }
      ]
    }

Street view image 

Download image
/valuations/{id}/imagery/map/streetview.jpg

This endpoint is used to download the street view image for the given valuation.

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  302
  • Headers
    Content-Type: application/jpeg
  • Response  404
  • Headers
    Content-Type: application/json
    Body
    {
      "errors": [
        {
          "message": "Resource not found",
          "type": "API_Exception_NotFoundException",
        }
      ]
    }

Market insights price per square meters image 

Download image
/valuations/{id}/imagery/market-insights/price-per-square-meter/{language}.png

This endpoint is used to download the market insights price per square meters image for the given valuation and language.

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/png
  • Response  404
  • Headers
    Content-Type: application/json
    Body
    {
      "errors": [
        {
          "message": "Resource not found",
          "type": "API_Exception_NotFoundException",
        }
      ]
    }

Mobility score image 

Download image
/valuations/{id}/imagery/mobility/score/{language}.png

This endpoint is used to download the mobility score image for the given valuation and language.

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/png
  • Response  404
  • Headers
    Content-Type: application/json
    Body
    {
      "errors": [
        {
          "message": "Resource not found",
          "type": "API_Exception_NotFoundException",
        }
      ]
    }

Mobility public transport image 

Download image
/valuations/{id}/imagery/mobility/public-transport/{language}.png

This endpoint is used to download the mobility public transport image for the given valuation and language.

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/png
  • Response  404
  • Headers
    Content-Type: application/json
    Body
    {
      "errors": [
        {
          "message": "Resource not found",
          "type": "API_Exception_NotFoundException",
        }
      ]
    }

Mobility schools image 

Download image
/valuations/{id}/imagery/mobility/schools/{language}.png

This endpoint is used to download the mobility schools image for the given valuation and language.

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/png
  • Response  404
  • Headers
    Content-Type: application/json
    Body
    {
      "errors": [
        {
          "message": "Resource not found",
          "type": "API_Exception_NotFoundException",
        }
      ]
    }

Mobility nearest cities image 

Download image
/valuations/{id}/imagery/mobility/nearest-cities/{language}.png

This endpoint is used to download the mobility nearest cities image for the given valuation and language.

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/png
  • Response  404
  • Headers
    Content-Type: application/json
    Body
    {
      "errors": [
        {
          "message": "Resource not found",
          "type": "API_Exception_NotFoundException",
        }
      ]
    }

Neighbourhood job seekers image 

Download image
/valuations/{id}/imagery/neighbourhood/job-seekers/{language}.png

This endpoint is used to download the neighbourhood job seekers image for the given valuation and language.

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/png
  • Response  404
  • Headers
    Content-Type: application/json
    Body
    {
      "errors": [
        {
          "message": "Resource not found",
          "type": "API_Exception_NotFoundException",
        }
      ]
    }

Neighbourhood cultural diversity image 

Download image
/valuations/{id}/imagery/neighbourhood/cultural-diversity/{language}.png

This endpoint is used to download the neighbourhood cultural diversity image for the given valuation and language.

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/png
  • Response  404
  • Headers
    Content-Type: application/json
    Body
    {
      "errors": [
        {
          "message": "Resource not found",
          "type": "API_Exception_NotFoundException",
        }
      ]
    }

Neighbourhood big families image 

Download image
/valuations/{id}/imagery/neighbourhood/big-families/{language}.png

This endpoint is used to download the neighbourhood big families image for the given valuation and language.

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/png
  • Response  404
  • Headers
    Content-Type: application/json
    Body
    {
      "errors": [
        {
          "message": "Resource not found",
          "type": "API_Exception_NotFoundException",
        }
      ]
    }

Neighbourhood affordability image 

Download image
/valuations/{id}/imagery/neighbourhood/affordability/{language}.png

This endpoint is used to download the neighbourhood affordability image for the given valuation and language.

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/png
  • Response  404
  • Headers
    Content-Type: application/json
    Body
    {
      "errors": [
        {
          "message": "Resource not found",
          "type": "API_Exception_NotFoundException",
        }
      ]
    }

Neighbourhood singles image 

Download image
/valuations/{id}/imagery/neighbourhood/singles/{language}.png

This endpoint is used to download the neighbourhood singles image for the given valuation and language.

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/png
  • Response  404
  • Headers
    Content-Type: application/json
    Body
    {
      "errors": [
        {
          "message": "Resource not found",
          "type": "API_Exception_NotFoundException",
        }
      ]
    }

Neighbourhood population age image 

Download image
/valuations/{id}/imagery/neighbourhood/population-age/{language}.png

This endpoint is used to download the neighbourhood population age image for the given valuation and language.

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/png
  • Response  404
  • Headers
    Content-Type: application/json
    Body
    {
      "errors": [
        {
          "message": "Resource not found",
          "type": "API_Exception_NotFoundException",
        }
      ]
    }

Neighbourhood education image 

Download image
/valuations/{id}/imagery/neighbourhood/education/{language}.png

This endpoint is used to download the neighbourhood education image for the given valuation and language.

  • Request
  • Headers
    Authorization: Realo key="{public_key}", version="{api_version}", signature="{signature}"
  • Response  200
  • Headers
    Content-Type: application/png
  • Response  404
  • Headers
    Content-Type: application/json
    Body
    {
      "errors": [
        {
          "message": "Resource not found",
          "type": "API_Exception_NotFoundException",
        }
      ]
    }
Next  Previous

Enums 

Address type

  • COUNTRY

  • ADMIN1

  • ADMIN2

  • PROVINCE

  • LOCALITY

  • POSTALCODE

  • SUBLOCALITY

  • DISTRICT

  • STREET

  • ADDRESS

Estimate report block

  • 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.

Estimate type

  • 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.

Listing flag

  • 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.

Listing status

  • 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.

Listing type

  • HOUSE

  • APARTMENT

  • ROOM

  • INDUSTRIAL

  • OFFICE

  • BUSINESS

  • HOLIDAY_RESORT

  • LAND

  • PARKING

  • INVESTMENT_PROPERTY

  • MISCELLANEOUS

  • NEWBUILD_PROJECT

Listing way

  • SALE

  • RENT

  • SELL_ANNUITY

  • HOLIDAY_RENTAL

Mobility transit type

  • walking-distance (WALKING_DISTANCE)

  • cycling-distance (CYCLING_DISTANCE)

  • driving-distance (DRIVING_DISTANCE)

Orientation

  • N (NORTH)

  • NE (NORTH_EAST)

  • E (EAST)

  • SE (SOUTH_EAST)

  • S (SOUTH)

  • SW (SOUTH_WEST)

  • W (WEST)

  • NW (NORTH_WEST)

Currency

  • 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)

Estate detachment

  • DETACHED

  • SEMI_DETACHED

  • TERRACED

  • CORNER

Estate heating type

  • GAS

  • FUEL_OIL

  • ELECTRICAL

  • CONVECTORS

  • WOOD_FUEL

  • SOLAR

  • COAL

  • HEAT_PUMP

  • PELLET_FUEL

  • NONE

  • GEOTHERMAL

Electricity inspection report type

  • 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.

Estate flood prone location

  • 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.

Estate delineated 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).

Country

  • 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)

Language

  • 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)

Estate secondary type

  • 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

Energy classification

  • 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.

Address spatial planning

  • 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

Virtual tour provider

  • AROUND_MEDIA

  • MATTERPORT

  • ROUNDME

  • YOUTUBE

  • VIMEO

  • FACEBOOK

  • QTS_MEDIA

  • PIXEET

  • NODALVIEW

Energy classification

  • 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.

Previous

Generated by aglio on 26 Apr 2024