HereMaps API Autosuggest results for resultType houseNumber returns only label

Viewed 202

Using HereMaps api autosuggest for resultType houseNumber retuerns only label in address property. 'Till tomorrow it used to return countryCode, countryName, state, county, city, district, street, postalCode and houseNumber. Is there any change to response?

EDIT: api call

https://autosuggest.search.hereapi.com/v1/autosuggest?app_id=${app_id}&apiKey=${apiKey}&at=44.8154033,20.2825135&q=koste%20glavinica%2016&lang=%27en%27

Response used to be like this:

address: {
     label: "ШАРАН, Кеј ослобођења 53, 11210 Београд, Србија",
     countryCode: "SRB",
     countryName: "Србија",
     state: "Централна Србија",
     county: "Град Београд",
     city: "Београд",
     district: "Земун",
     street: "Кеј ослобођења",
     postalCode: "11210",
     houseNumber: "53",
},

And now response is:

"address": {
      "label": "ШАРАН, Кеј ослобођења 53, 11210 Београд, Србија"
},
1 Answers

Please add "show=details" to your API call to get the full address back.

As our Geocoder and Search product is still under active development, please "NOTE: The response may contain experimental elements not documented here. Any undocumented element is subject to removal at any time."

Related