Authentication, input and response

Get suggestions of real estate objects addresses from Altum AI.

GET https://api.altum.ai/autosuggest?search={string}&fuzzy={true or 1 or yes}

This endpoint allows you to get five (5) suggestions based on your query parameters. It needs at least one (1) character and responds with the best suggestions.

Query Parameters

NameTypeDescription

fuzzy

boolean

Whether you need fuzzy results or not. This could be True, 1 or yes.

search*

string

Postcode, House Number, House Number Additions and Streetnames can be passed as queries, using the search parameter.

limit

int

Maximum number of suggestions in response

Headers

NameTypeDescription

Content-Type

string

application/json

x-api-key

string

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

{
	"Output": {
		"1": {
			"BagID": "0352010000000398",
			"House Address": "3961HM-200-",
			"House Number": "200",
			"Postcode": "3961HM",
			"House Addition": null,
			"Street Name": "Amstel",
			"City": "Wijk bij Duurstede",
			"Province": "Utrecht"
		},
		"2": {
			"BagID": "0398010000000417",
			"House Address": "1703NR-62-",
			"House Number": "62",
			"Postcode": "1703NR",
			"House Addition": null,
			"Street Name": "Amstel",
			"City": "Heerhugowaard",
			"Province": "Noord-Holland"
		},
		"3": {
			"BagID": "0398010000000421",
			"House Address": "1703NR-78-",
			"House Number": "78",
			"Postcode": "1703NR",
			"House Addition": null,
			"Street Name": "Amstel",
			"City": "Heerhugowaard",
			"Province": "Noord-Holland"
		},
		"4": {
			"BagID": "0398010000000423",
			"House Address": "1703NR-84-",
			"House Number": "84",
			"Postcode": "1703NR",
			"House Addition": null,
			"Street Name": "Amstel",
			"City": "Heerhugowaard",
			"Province": "Noord-Holland"
		},
		"5": {
			"BagID": "0398010000024590",
			"House Address": "1703NR-56-",
			"House Number": "56",
			"Postcode": "1703NR",
			"House Addition": null,
			"Street Name": "Amstel",
			"City": "Heerhugowaard",
			"Province": "Noord-Holland"
		}
	}
}

Turn on fuzzy to support multi string queries. Learn more about fuzzy search support here.

Request query

Example request

https://api.altum.ai/autosuggest?search=1181TV
https://api.altum.ai/autosuggest?search=3947BA-1-b
https://api.altum.ai/autosuggest?search=bellefleurho5&fuzzy=1
https://api.altum.ai/autosuggest?search=bellefleurho%205&fuzzy=yes
https://api.altum.ai/autosuggest?search=bellefleurho%205&fuzzy=true&limit=5

Spaces need to be inputted as %20

Last updated