scraper
Back to API docs

Overview

  • Overview

SERP

  • POSTSERP

Core

  • POSTGeocode
  • POSTTranslate
  • POSTSearch
  • POSTVision
  • POSTPlaces Search
  • POSTPlace Details
  • POSTPlaces Nearby
  • POSTAutocomplete

Maps

  • POSTSearch
  • POSTPlace Details
  • POSTReviews

Hotels

  • POSTSearch
  • POSTDetail
  • POSTReviews
  • POSTPhotos

Flights

  • POSTSearch
  • POSTCalendar
  • POSTExplore

Finance

  • POSTQuote
  • POSTFundamentals
  • POSTChart
  • POSTNews
  • POSTSearch
  • POSTEstimates
  • POSTEarnings

Place Details

2 credits

Get detailed information about a Google Maps place.

POST/api/v1/tools/google/maps/place

Parameters

urlstringrequired

Full Google Maps URL. Must contain a hex ID (e.g. !1s0x...:0x...). Copy from browser address bar.

languagestring

BCP-47 language code (e.g. "en", "ja"). Defaults to "en".

regionstring

ISO 3166-1 alpha-2 region code (e.g. "US", "JP"). Defaults to "US".

fieldsstring[]

Fields to include. Omit for defaults: name, address, rating, totalReviewCount, categories, phone, website, businessHours, description, reviewsSummary, reviewHighlights, reviewTopics, featuredReviews, amenities, popularTimes, priceRange, reviewsPerRating. Use ["*"] for all.

Response Schema

dataobject

Place details

namestring

Place name

addressstring

Formatted address

ratingnumber | null

Average rating (1 to 5)

totalReviewCountnumber | null

Total number of reviews

categoriesstring[]

Place categories

phonestring | null

Phone number

websitestring | null

Website URL

businessHoursobject | null

Business hours by day of week

descriptionstring | null

Place description

reviewsSummarystring | null

AI-generated summary of reviews

reviewHighlightsstring[]

Highlighted review excerpts

reviewTopicsobject[]

Review topics with sentiment counts

featuredReviewsobject[]

Featured reviews for the place

amenitiesobject | null

Place amenities and features

popularTimesobject | null

Popular times by day and hour

priceRangestring | null

Price range indicator

reviewsPerRatingobject | null

Review count breakdown by star rating

metaobject

Request metadata

toolstring

Tool name (google-maps-place)

creditsUsednumber

Credits consumed (2)

requestIdstring

Unique request ID

Request

curl -X POST https://scraper.run/api/v1/tools/google/maps/place \
-H "Authorization: Bearer sc_live_..." \
-H "Content-Type: application/json" \
-d '{
"url": "https://www.google.com/maps/place/.../@40.7484,-73.9857,17z/data=!3m1!4b1!4m6!3m5!1s0x89c259a9b3117469:0xd134e199a405a163!8m2!3d40.7484!4d-73.9857!16zL20vMDJuZDFj"
}'

Response Example

{
"data": {
"name": "Empire State Building",
"address": "20 W 34th St., New York, NY 10001",
"rating": 4.7,
"totalReviewCount": 98234,
"categories": [
"Tourist attraction",
"Observation deck"
],
"phone": "+1 212-736-3100",
"website": "https://www.esbnyc.com",
"businessHours": {
"monday": "10:00 AM - 12:00 AM",
"tuesday": "10:00 AM - 12:00 AM"
},
"description": "Iconic 102-story Art Deco skyscraper...",
"reviewsSummary": "Visitors love the breathtaking views...",
"reviewHighlights": [
"Amazing views",
"Worth the wait"
],
"amenities": {
"wheelchairAccessible": true,
"restrooms": true
},
"priceRange": "$$",
"reviewsPerRating": {
"1": 2234,
"2": 3000,
"3": 8000,
"4": 20000,
"5": 65000
}
},
"meta": {
"tool": "google-maps-place",
"creditsUsed": 2,
"requestId": "req_abc123"
}
}