---
title: "Get place details"
method: GET
path: "/v1/google/maps/place"
tags: ["Google Maps"]
---

# Get place details

`GET /v1/google/maps/place`

Get detailed place information from Google Maps via the protobuf API.

Requires either ``place_id`` (e.g. ``ChIJN1t_tDeuEmsRUsoyG83frY4``) or
``data_id`` (e.g. ``0x89c259617ae5b78b:0xe919ce17bb09920e``). The
data_id is available in the ``data_id`` field of ``/maps/search``
results. Returns name, address, rating, review count, phone, website,
GPS coordinates, categories, and up to 20 photo URLs.

## Query parameters

- `place_id` string, nullable — Google place ID (ChIJ...)
- `data_id` string, nullable — Google Maps data ID (0x...:0x...)
- `hl` string — Language code
- `gl` string — Country code

## Response `200`

Successful Response

- MapsPlaceResponse — Response for GET /api/v1/maps/place.
  - `place` MapsPlaceDetail, required — Detailed place information.
    - `title` string, required
    - `place_id` string, nullable
    - `data_id` string, nullable
    - `data_cid` string, nullable
    - `rank` integer, nullable
    - `rating` number, nullable
    - `reviews_count` integer, nullable
    - `price_level` string, nullable
    - `type` string, nullable
    - `types` string[]
    - `type_ids` string[]
    - `extensions` object
    - `address` string, nullable
    - `phone` string, nullable
    - `website` string, nullable
    - `gps_coordinates` GpsCoordinates — GPS coordinates.
      - `lat` number, required
      - `lng` number, required
    - `open_state` string, nullable
    - `hours` string, nullable
    - `operating_hours` object
    - `description` string, nullable
    - `thumbnail` string, nullable
    - `image` string, nullable — Full-size image URL (same CDN as thumbnail but larger)
    - `google_maps_url` string, nullable
    - `reviews_link` string, nullable
    - `photos_link` string, nullable
    - `posts_link` string, nullable
    - `service_options` MapsServiceOptions — Service options for a business.
      - `dine_in` boolean, nullable
      - `takeout` boolean, nullable
      - `delivery` boolean, nullable
      - `curbside_pickup` boolean, nullable
    - `provider_id` string, nullable
    - `rating_breakdown` object
    - `order_online_urls` string[]
    - `photos` string[]

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/scrapebadger/apis/scrapebadger-account-api.md) · [All operations](https://skmtc.net/scrapebadger/apis/scrapebadger-account-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/scrapebadger/scrapebadger-account-api/revisions/4a1ef8777baf/schema)
