Authentication, input and response

Post object data to receive WOZ values

POST https://api.altum.ai/woz

This endpoint allows you to get the latest WOZ values from our database. A POST request requires a body parameter(Address).

Headers

NameTypeDescription

Content-Type

string

application/json

x-api-key*

string

API Key from Altum. Create one via Mopsus(https://mopsus.altum.ai)

Request Body

NameTypeDescription

postcode*

string

Zipcode of the object

housenumber*

string

House number of the object

addition

string

House number addition

index

boolean

Use 1 to add an "IndexedValue" to the latest available WOZ value indexed with the Kadaster index to the current month. Default = 0

cache

boolean

Use 0 to override fetching from cache and perform a live request. Default = 1

{
    'Output': 'Please use https://api.altum.ai or visit https://mopsus.altum.ai to make your request.'
}

GET WOZ Values with BAGID request

GET https://api.altum.ai/woz?bag_id={bag_id}

This endpoint responds with the latest WOZ values from our database. The GET Method requires a query parameter(bag_id) with the value being the actual 16-character BAGID.

Query Parameters

NameTypeDescription

bag_id*

string

16 digits BAG ID

"0402010001567022"

Headers

NameTypeDescription

Content-Type

string

application/json

x-api-key*

string

API Key from Altum. Create one via Mopsus(https://mopsus.altum.ai)

{
  "Output": {
    "BagID": "0622010000065935",
    "PostCode": "3136KZ",
    "HouseNumber": "832",
    "HouseAddition": null,
    "HouseAddress": "3136KZ-832-",
    "City": "Vlaardingen",
    "Street": "Aalscholverlaan",
    "HouseType": "woonfunctie",
    "BuildYear": 1969,
    "OuterSurfaceArea": 1412,
    "Longitude": 4.350730676835097,
    "Latitude": 51.93255387951979,
    "WOZ-source_date": "2020-12-22",
    "wozvalue": [
      {
        "Date": "01-01-2019",
        "Value": 157000
      },
      {
        "Date": "01-01-2018",
        "Value": 133000
      },
      {
        "Date": "01-01-2017",
        "Value": 122000
      },
      {
        "Date": "01-01-2016",
        "Value": 122000
      },
      {
        "Date": "01-01-2015",
        "Value": 122000
      },
      {
        "Date": "01-01-2014",
        "Value": 132000
      }
    ]
  }
}

For POST requests: set cache to 0 to fetch fresh, real-time values instead from cache as source. Note: this might impact load time.

FREE Ping for availability

Post object data to receive availability of WOZ values

POST https://api.altum.ai/woz/ping

This endpoint allows you to get the availability of the latest WOZ values from our database. A POST request requires a body parameter (Address).

Headers

NameTypeDescription

Content-Type

string

application/json

x-api-key*

string

API Key from Altum. Create one via Mopsus(https://mopsus.altum.ai)

Request Body

NameTypeDescription

postcode*

string

Zipcode of the object

housenumber*

string

House number of the object

addition

string

House number addition

index

boolean

Use 1 to add an "IndexedValue" to the latest available WOZ value indexed with the Kadaster index to the current month. Default = 0

cache

boolean

Use 0 to override fetching from cache and perform a live request. Default = 1

{
    'Output': 'Please use https://api.altum.ai or visit https://mopsus.altum.ai to make your request.'
}

Request body

Example request

{
  "postcode": "2771DS",
  "housenumber": "87",
  "addition": "",
  "index": 1,
  "cache": 0
}

Request query

Example request

https://api.altum.ai/woz?bag_id=0402010001567022

Last updated