Places Nearby
1 creditFind places near a specific location using Google Maps data.
/api/v1/tools/google/places/nearbyParameters
Center point as "lat,lng" (e.g. "35.6762,139.6503")
Search radius in meters (1–50000)
Place type filter (e.g. "restaurant")
Keyword filter
Language code for results
CLDR region code (e.g. "US", "JP") for result formatting.
Max results, 1-20 (default 20).
Place types to include (Table A types). Up to 50.
Place types to exclude (Table A types). Up to 50.
Primary place types to include (Table A types). Up to 50.
Primary place types to exclude (Table A types). Up to 50.
How to rank results. "POPULARITY" (default) or "DISTANCE".
Response Schema
Array of nearby places
Google Place ID
Place name
Formatted address
Latitude
Longitude
Average rating
Place type tags
Request metadata
Tool name (places/nearby)
Credits consumed (1)
Unique request ID
Request
curl -X POST https://scraper.run/api/v1/tools/google/places/nearby \-H "Authorization: Bearer sc_live_..." \-H "Content-Type: application/json" \-d '{"location": "35.6592,139.6988", "radius": 1000, "type": "cafe"}'
Response Example
{"data": [{"placeId": "ChIJ_zua6N2LGGAR04lCFnCTqqk","name": "About Life Coffee Brewers","address": "1-19-8 Dogenzaka, Shibuya City, Tokyo","lat": 35.6592,"lng": 139.6988,"rating": 4.3,"types": ["cafe","food","point_of_interest"]}],"meta": {"tool": "google-places-nearby","creditsUsed": 1,"requestId": "req_abc123"}}