Authentication, input and response
WOZ API methods
POST to receive WOZ value for a single address
GET WOZ value for a BAG ID
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
Content-Type
string
application/json
x-api-key*
string
Unique API Key from Altum. Create one via Mopsus(https://mopsus.altum.ai)
Request Body
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
{
"message": "Missing Authentication Token"
}{
"message": "Internal server error"
}{
"Output": {
"BagID": "499010002023718",
"PostCode": "2771DS",
"HouseNumber": "87",
"HouseAddition": null,
"HouseAddress": "2771DS-87-",
"City": "Boskoop",
"Street": "Zuidkade",
"HouseType": "woonfunctie",
"BuildYear": 1961,
"OuterSurfaceArea": 1605,
"Longitude": 4.65808526945334,
"Latitude": 52.068393816655316,
"WOZ-source_date": "2023-03-21",
"wozvalue": [
{
"Date": "01-01-2022",
"Value": "630000",
"IndexedValue": "644942"
},
{
"Date": "01-01-2021",
"Value": "551000"
},
{
"Date": "01-01-2020",
"Value": "518000"
},
{
"Date": "01-01-2019",
"Value": "498000"
},
{
"Date": "01-01-2018",
"Value": "490000"
},
{
"Date": "01-01-2017",
"Value": "469000"
},
{
"Date": "01-01-2016",
"Value": "430000"
}
]
}
}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
bag_id*
string
16 digits BAG ID
"0402010001567022"
Headers
Content-Type
string
application/json
x-api-key*
string
API Key from Altum. Create one via Mopsus(https://mopsus.altum.ai)
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
Content-Type
string
application/json
x-api-key*
string
API Key from Altum. Create one via Mopsus(https://mopsus.altum.ai)
Request Body
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
Request body
Example request
Request query
Example request
Last updated