I'm interested in finding all the cities within a specific radius (x km) from a central city, based on given coordinates. I've tried using the following GET request with the HERE Reverse Geocoding API:
GET https://revgeocode.search.hereapi.com/v1/
revgeocode
?at=50.1158056,8.6786751
&types=city
&apiKey={YOUR_API_KEY}
However, the API only returns the city corresponding to my input coordinates, rather than providing a list of all nearby cities. I'm looking for alternative approaches to achieve my initial objective.