> ## Documentation Index
> Fetch the complete documentation index at: https://docs.scrapeunblocker.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Scrape Google Maps place details

> Returns the full data for one Google Maps place as JSON: `name`, `address` (+ `addressLines`), `phone`, `website`, `rating`, `categories`, `latitude`/`longitude`, `plusCode`, `hours` + `openNow`, `description`, `photo`, `cid`, `featureId`, `googleMapsUrl` and `relatedPlaces`. Identify the place with `place_id` (ChIJ...), a Maps `url`, or a raw `feature_id` (0xHEX:0xHEX). Location-neutral - the feature id resolves the place directly; `proxy_country` defaults to a US exit to clear Google's consent wall.



## OpenAPI

````yaml /api-reference/openapi.json post /maps/place-details
openapi: 3.1.0
info:
  title: ScrapeUnblocker API
  description: >-
    Public API for the ScrapeUnblocker proxy/anti-bot service. Authenticate
    every request with the `x-scrapeunblocker-key` header. Three endpoints are
    documented here: page-source extraction, Google SERP scraping, and image
    fetch. All other paths exist for internal operations and are intentionally
    hidden from this spec.
  version: 3.0.0
servers:
  - url: https://api.scrapeunblocker.com
    description: Production
security: []
paths:
  /maps/place-details:
    post:
      tags:
        - Plugins
      summary: Scrape Google Maps place details
      description: >-
        Returns the full data for one Google Maps place as JSON: `name`,
        `address` (+ `addressLines`), `phone`, `website`, `rating`,
        `categories`, `latitude`/`longitude`, `plusCode`, `hours` + `openNow`,
        `description`, `photo`, `cid`, `featureId`, `googleMapsUrl` and
        `relatedPlaces`. Identify the place with `place_id` (ChIJ...), a Maps
        `url`, or a raw `feature_id` (0xHEX:0xHEX). Location-neutral - the
        feature id resolves the place directly; `proxy_country` defaults to a US
        exit to clear Google's consent wall.
      operationId: maps_place_details_maps_place_details_post
      parameters:
        - name: url
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              A Google Maps place URL (share link or /maps/place/... URL). The
              feature id or place_id is read out of it.
            title: Url
          description: >-
            A Google Maps place URL (share link or /maps/place/... URL). The
            feature id or place_id is read out of it.
        - name: place_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: A Google place_id, e.g. 'ChIJN1t_tDeuEmsRUsoyG83frY4'.
            title: Place Id
          description: A Google place_id, e.g. 'ChIJN1t_tDeuEmsRUsoyG83frY4'.
        - name: feature_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              A Maps feature id '0xHEX:0xHEX', e.g.
              '0x47e66e2964e34e2d:0x8ddca9ee380ef7e0'. Fastest - no resolve
              step.
            title: Feature Id
          description: >-
            A Maps feature id '0xHEX:0xHEX', e.g.
            '0x47e66e2964e34e2d:0x8ddca9ee380ef7e0'. Fastest - no resolve step.
        - name: hl
          in: query
          required: false
          schema:
            type: string
            description: Google UI language, e.g. 'en', 'de', 'fr'.
            default: en
            title: Hl
          description: Google UI language, e.g. 'en', 'de', 'fr'.
        - name: gl
          in: query
          required: false
          schema:
            type: string
            description: Google country, ISO-2 lowercase, e.g. 'us'.
            default: us
            title: Gl
          description: Google country, ISO-2 lowercase, e.g. 'us'.
        - name: proxy_country
          in: query
          required: false
          schema:
            type: string
            description: >-
              Exit-IP country (ISO-2). Defaults to a US exit - an EU exit hits
              Google's consent wall.
            default: us
            title: Proxy Country
          description: >-
            Exit-IP country (ISO-2). Defaults to a US exit - an EU exit hits
            Google's consent wall.
        - name: raw
          in: query
          required: false
          schema:
            type: boolean
            description: Include the decoded place core array under `raw`.
            default: false
            title: Raw
          description: Include the decoded place core array under `raw`.
      responses:
        '200':
          description: JSON place object.
          content:
            application/json:
              schema: {}
        '400':
          description: No/invalid place identifier.
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '502':
          description: Blocked by Google or no place data returned.
        '504':
          description: Fetch timed out.
      security:
        - ScrapeUnblockerKey: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    ScrapeUnblockerKey:
      type: apiKey
      in: header
      name: x-scrapeunblocker-key
      description: Your ScrapeUnblocker API key. Apply on every request.

````