Get all places (more than 60 results) inside the search radius at latitude-longitude from the Google Places API.
Official Google Places API Nearby search can return as many as 60 results, split across three pages. Actor overrides this limit and gets all places in a few kilometers radius around specified geopoint by doing distance search. Idea behind is to avoid anti-pattern as displayed below, since it leads to twice more API calls in order to get each additional 10% of results:
You need to obtain your own Google API key
Google API might block proxy access (not expected, rare issue), if-when happens actor will show error [BAD-REQUEST]
Search radius set to 1000 meters and grid radius set to 50 meters by default.
1{ 2 "apiKey": "YOUR OWN GOOGLE API KEY", 3 "latitude": "47.41168232410833", 4 "longitude": "8.54417797274538", 5 "radiusMeters": 1000 6}
Output saved exactly as it comes from Google API data feed with calculated distanceMeters
(from search center) added to it.
1{ 2 "distanceMeters": 920, 3 "business_status": "OPERATIONAL", 4 "geometry": { 5 "location": { 6 "lat": 47.4036189, 7 "lng": 8.5419602 8 }, 9 "viewport": { 10 "northeast": { 11 "lat": 47.4049176302915, 12 "lng": 8.543189430291502 13 }, 14 "southwest": { 15 "lat": 47.4022196697085, 16 "lng": 8.540491469708497 17 } 18 } 19 }, 20 "icon": "https://maps.gstatic.com/mapfiles/place_api/icons/v1/png_71/generic_business-71.png", 21 "icon_background_color": "#7B9EB0", 22 "icon_mask_base_uri": "https://maps.gstatic.com/mapfiles/place_api/icons/v2/generic_pinlet", 23 "name": "Dr. phil. Würth Josy", 24 "place_id": "ChIJ2z-n_44LkEcRWdpWOIwcZ1Q", 25 "plus_code": { 26 "compound_code": "CG3R+CQ Zürich, Switzerland", 27 "global_code": "8FVCCG3R+CQ" 28 }, 29 "reference": "ChIJ2z-n_44LkEcRWdpWOIwcZ1Q", 30 "scope": "GOOGLE", 31 "types": [ 32 "doctor", 33 "health", 34 "point_of_interest", 35 "establishment" 36 ], 37 "vicinity": "Ringstrasse 50, Zürich" 38}
You can clone actor and create your own build in Apify cloud with ENV.apiKey or ENV.APIKEY to exclude your Google API key from input (for example to provide support for doing secure runs from mobile or desktop apps).
Yes, if you're scraping publicly available data for personal or internal use. Always review Websute's Terms of Service before large-scale use or redistribution.
No. This is a no-code tool — just enter a job title, location, and run the scraper directly from your dashboard or Apify actor page.
It extracts job titles, companies, salaries (if available), descriptions, locations, and post dates. You can export all of it to Excel or JSON.
Yes, you can scrape multiple pages and refine by job title, location, keyword, or more depending on the input settings you use.
You can use the Try Now button on this page to go to the scraper. You’ll be guided to input a search term and get structured results. No setup needed!