Get one Google Maps place in full
Read one place from its place ID or Maps URL, in the same forms reviews accepts: IDs, category, address, coordinates, plus code, phone, website, rating and review count, hours, open-now and business status, time zone, Google’s description of the place, and its attributes grouped by section (accessibility, amenities, payments and so on). Bills one request.
/place-details Places https://api.fetchlayer.dev/google-maps/place-details Headers
Authorization string required Bearer token — your FetchLayer API key.
Parameters
placeIdOrUrl string required A ChIJ place ID, a hex feature ID (0x…:0x…), a Google Maps place URL, a CID URL (?cid=…), or a maps.app.goo.gl / goo.gl/maps short link.
language string optional Language for place names, categories and hours, as a language code (en, de, pt-BR). (default: en)
country string optional Two-letter country code the results are localized for (US, GB, DE). (default: US)
Response Fields
place-details
Get one Google Maps place in full
entityType string Always gmaps-place-details.
place object The place.
place.placeId string Google place ID (ChIJ…), with featureId (0x…:0x…) and cid alongside it.
place.name string The place name, with category and categories.
place.address string The full address; addressComponents splits it into neighborhood, street, city, postalCode, state and countryCode.
place.coordinates object latitude and longitude.
place.phone string | null The phone number as Google shows it, with phoneInternational in E.164 form.
place.website string | null The website listed on the place.
place.rating number | null Average rating, with reviewCount alongside it.
place.priceLevel string | null Price level, only when Google shows one.
place.openingHours object[] Hours by day, each with day and hours[].
place.openNow boolean | null Whether it is open at the time of the request, with currentStatus as Google words it (e.g. "Open · Closes 5 PM").
place.businessStatus string OPERATIONAL, CLOSED_TEMPORARILY or CLOSED_PERMANENTLY.
place.timezone string IANA time zone, e.g. America/Denver.
place.googleMapsUrl string Link to the place on Google Maps, with thumbnailUrl for its photo.
place.plusCode string | null The Open Location Code (plus code).
place.description string | null Google’s short description of the place.
place.attributes object Attributes grouped by section, e.g. { Accessibility: ["Wheelchair accessible entrance"] }.
pagesScraped number Always 1.
Request
curl -X POST "https://api.fetchlayer.dev/google-maps/place-details" \
-H "Authorization: Bearer ss-your-key" \
-H "Content-Type: application/json" \
-d '{"placeIdOrUrl":"0x47e61d19ca7ae2bd:0x57faf8cb6310e660"}'Response
{
"entityType": "gmaps-place-details",
"placeIdOrUrl": "0x47e61d19ca7ae2bd:0x57faf8cb6310e660",
"language": "en",
"country": "US",
"place": {
"placeId": "ChIJveJ6yhkd5kcRYOYQY8v4-lc",
"featureId": "0x47e61d19ca7ae2bd:0x57faf8cb6310e660",
"cid": "6339652977901495904",
"name": "Disneyland Paris",
"category": "Theme park",
"categories": [
"Theme park",
"Amusement center",
"Amusement park",
"Country club"
],
"address": "Bd de Parc, 77700 Coupvray, France",
"addressComponents": {
"neighborhood": null,
"street": "Bd de Parc",
"city": "Coupvray",
"postalCode": "77700",
"state": null,
"countryCode": "FR"
},
"coordinates": {
"latitude": 48.8673858,
"longitude": 2.7835929999999998
},
"plusCode": "8FW4VQ8M+XC",
"phone": "+33 9 69 32 60 66",
"phoneInternational": "+33969326066",
"website": "https://www.disneylandparis.com/",
"rating": 4.5,
"reviewCount": 325039,
"priceLevel": null,
"openingHours": [
{
"day": "Monday",
"hours": [
"9:30 AM–9 PM"
]
},
{
"day": "Tuesday",
"hours": [
"9:30 AM–9 PM"
]
}
],
"currentStatus": "Closed · Opens 9:30 AM Wed",
"openNow": false,
"businessStatus": "OPERATIONAL",
"timezone": "Europe/Paris",
"googleMapsUrl": "https://www.google.com/maps/place/?q=place_id:ChIJveJ6yhkd5kcRYOYQY8v4-lc",
"thumbnailUrl": "https://lh3.googleusercontent.com/gps-cs-s/AHRPTWltJ2lrutCf4…",
"description": "Theme park complex featuring family-friendly rides, shows and costumed characters, plus hotels.",
"attributes": {
"Accessibility": [
"Wheelchair accessible entrance",
"Wheelchair accessible parking lot",
"Wheelchair accessible restroom",
"Wheelchair accessible seating"
]
}
},
"pagesScraped": 1,
"scrapedAt": "2026-09-15T21:17:19.663Z"
}