Authentication, input and response
Transaction API
POST https://api.altum.ai/transaction
This endpoint allows you to retrieve Kadaster transaction data for an object.
Headers
x-api-key*
string
Unique API Key from Altum. Create one via Mopsus(https://mopsus.altum.ai)
Content-Type
string
application/json
Request Body
postcode*
string
Zipcode of the object
valuationdate
number
Enter as YYYYMMDD, gives newest transaction till that date. Default is TODAY
houseaddition
string
House letter and addition of the object
housenumber*
number
House number of the object
{
"Output": "The given house address not found in database, the combination of Post Code, House Number and House Addition does not exist."
}{
"detail": [
{
"loc": [
"body",
43
],
"msg": "Expecting value: line 3 column 18 (char 43)",
"type": "value_error.jsondecode",
"ctx": {
"msg": "Expecting value",
"doc": "{\n \"postcode\": \"2201PZ\",\n \"housenumber\": a,\n \"valuationdate\": \"20121001\"\n}",
"pos": 43,
"lineno": 3,
"colno": 18
}
}
]
}{
"message": "Missing Authentication Token"
}{
"message": "Internal server error"
}{
"Output": [
{
"Transaction": "Transaction-20100315",
"BagID": null,
"PostCode": "2771HM",
"HouseNumber": 173,
"HouseAddition": null,
"City": "BOSKOOP",
"Street": "PARKLAAN",
"HouseType": "T",
"BuildingCode": 11,
"OuterSurfaceArea": 315,
"MoreRealEstate": "J",
"RentedOut": "J",
"BusinessRight": "VE",
"MutationVariety": 606,
"FamilyTransaction": "N",
"TransactionDate": 20191001,
"TransactionPrice": 500000,
"TransactionPriceIndexed": 600000
}
]
}FREE Ping for availability
Post object data to receive availability of transaction data
POST https://api.altum.ai/transaction/ping
This endpoint allows you to get the availability of the transaction data from our database. A POST request requires a body parameter (Address).
Headers
x-api-key*
string
API Key from Altum. Create one via Mopsus(https://mopsus.altum.ai)
Content-Type
string
application/json
Request Body
postcode*
string
Zipcode of the object
valuationdate
number
Enter as YYYYMMDD, gives newest transaction till that date. Default is TODAY
houseaddition
string
House letter and addition of the object
housenumber*
number
House number of the object
{
"detail": [
{
"loc": [
"body",
43
],
"msg": "Expecting value: line 3 column 18 (char 43)",
"type": "value_error.jsondecode",
"ctx": {
"msg": "Expecting value",
"doc": "{\n \"postcode\": \"2201PZ\",\n \"housenumber\": a,\n \"valuationdate\": \"20121001\"\n}",
"pos": 43,
"lineno": 3,
"colno": 18
}
}
]
}{
"message": "Missing Authentication Token"
}{
"message": "Internal server error"
}{
"Output": "Transaction Data for 2728KH-8- is available.",
"Date": "20210602"
}Request body
Example request
{
"postcode": "2728KH",
"housenumber": 5
}Last updated