Place Details
0.6 creditsGet detailed information about a place from Google Maps by its Place ID.
/api/v1/tools/google/places/detailsParameters
Google Place ID (alphanumeric, dashes, underscores). Get IDs from Places Search or Autocomplete.
Advanced Google Places API field-mask override. Omit it to derive the mask from fields. Use it only to control Google API billing tiers.
Fields to return. Omit for defaults: placeId, name, types, primaryType, address, lat, lng, rating, ratingCount, phone, website, googleMapsUrl, hours, reviews, photos, summary, services, businessStatus, priceLevel. Use ["*"] for all fields.
Language code for results
Response Schema
Place details
Google Place ID
Place name
Formatted address
Phone number
Website URL
Average rating (1–5)
Total number of ratings
Price level (0–4)
Whether currently open
User reviews
Place photos
Request metadata
Tool name (places/details)
Credits consumed (0.6)
Unique request ID
Request
curl -X POST https://scraper.run/api/v1/tools/google/places/details \-H "Authorization: Bearer sc_live_..." \-H "Content-Type: application/json" \-d '{"placeId": "ChIJ_zua6N2LGGAR04lCFnCTqqk"}'
Response Example
{"data": {"placeId": "ChIJ_zua6N2LGGAR04lCFnCTqqk","name": "About Life Coffee Brewers","address": "1-19-8 Dogenzaka, Shibuya City, Tokyo 150-0043","phone": "+81 3-6809-0751","website": "https://aboutlifecoffeebrewers.com","rating": 4.3,"totalRatings": 812,"priceLevel": 1,"openNow": true,"reviews": [{"author": "John D.","rating": 5,"text": "Amazing pour-over coffee...","relativeTime": "2 weeks ago"}]},"meta": {"tool": "google-places-details","creditsUsed": 0.6,"requestId": "req_abc123"}}