Impossible ONLY with this URL:
https://maps.googleapis.com/maps/api/place/autocomplete/json?input=bar&key=API_KEY
All I had to do was get the place_id from the response, and then use it in the following URL:
https://maps.googleapis.com/maps/api/place/details/json?input=bar&placeid=PLACE_ID&key=API_KEY
Where:
PLACE_ID - extracted place_id from the previous request.
API_KEY is my key created by Google for use with my application.
autocomplete should be replaced with details in the above URLs.
source share