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

Headers

{
	"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