Places Search
1 creditSearch for places by text query using Google Maps data.
/api/v1/tools/google/places/searchParameters
Search query (e.g. "pizza near Times Square")
Center point as "lat,lng"
Search radius in meters (1–50000)
Place type filter (e.g. "restaurant", "hotel")
Language code for results
Max results per request, 1-20 (default 10)
Only return places that are currently open.
Minimum average user rating (0.0-5.0).
Filter by price level. Values: PRICE_LEVEL_FREE, PRICE_LEVEL_INEXPENSIVE, PRICE_LEVEL_MODERATE, PRICE_LEVEL_EXPENSIVE, PRICE_LEVEL_VERY_EXPENSIVE.
How to rank results. "RELEVANCE" or "DISTANCE".
CLDR region code (e.g. "US", "JP") for result formatting.
When true, only return results matching the type exactly.
Include businesses without a physical storefront.
EV charging filters. Properties: connectorTypes (string[]), minimumChargingRateKw (number).
Response Schema
Array of places
Google Place ID
Place name
Formatted address
Latitude
Longitude
Average rating (1–5)
Total number of ratings
Place type tags
Request metadata
Tool name (places/search)
Credits consumed (1)
Unique request ID
Request
curl -X POST https://scraper.run/api/v1/tools/google/places/search \-H "Authorization: Bearer sc_live_..." \-H "Content-Type: application/json" \-d '{"query": "coffee shops in Shibuya", "maxResults": 5}'
Response Example
{"data": [{"placeId": "ChIJ_zua6N2LGGAR04lCFnCTqqk","name": "About Life Coffee Brewers","address": "1-19-8 Dogenzaka, Shibuya City, Tokyo 150-0043","lat": 35.6592,"lng": 139.6988,"rating": 4.3,"totalRatings": 812,"types": ["cafe","food","point_of_interest"]}],"meta": {"tool": "google-places-search","creditsUsed": 1,"requestId": "req_abc123"}}