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

# Get place reviews

> Get place reviews



## OpenAPI

````yaml GET /v1/google/maps/reviews
openapi: 3.1.0
info:
  title: ScrapeBadger Google Scraper
  description: >-
    Dedicated API for scraping Google products (SERP, Maps, News, Hotels,
    Trends, Jobs, Shopping, Patents, Scholar, Autocomplete, Images, Videos,
    Finance, AI Mode, Lens, Products).
  version: 1.0.0
servers:
  - url: https://scrapebadger.com
    description: Production
security:
  - apiKeyAuth: []
paths:
  /v1/google/maps/reviews:
    get:
      tags:
        - Google Maps
      summary: Get place reviews
      description: |-
        Get reviews for a Google Maps place via the protobuf API.

        The ``data_id`` is the hex pair from ``/maps/search`` results
        (e.g. ``0x89c259617ae5b78b:0xe919ce17bb09920e``). Supports both
        offset-based and token-based pagination.
      operationId: maps_reviews_api_v1_maps_reviews_get
      parameters:
        - name: data_id
          in: query
          required: true
          schema:
            type: string
            description: Google Maps data ID (0x...:0x...)
            title: Data Id
          description: Google Maps data ID (0x...:0x...)
        - name: sort_by
          in: query
          required: false
          schema:
            enum:
              - qualityScore
              - newestFirst
              - ratingHigh
              - ratingLow
            type: string
            description: Sort order
            default: qualityScore
            title: Sort By
          description: Sort order
        - name: hl
          in: query
          required: false
          schema:
            type: string
            description: Language code
            default: en
            title: Hl
          description: Language code
        - name: gl
          in: query
          required: false
          schema:
            type: string
            description: Country code
            default: us
            title: Gl
          description: Country code
        - name: next_page_token
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Pagination token from previous response
            title: Next Page Token
          description: Pagination token from previous response
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            description: Review offset (0-based)
            default: 0
            title: Offset
          description: Review offset (0-based)
        - name: results
          in: query
          required: false
          schema:
            type: integer
            maximum: 20
            minimum: 1
            description: Reviews per page
            default: 10
            title: Results
          description: Reviews per page
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MapsReviewsResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    MapsReviewsResponse:
      properties:
        location:
          anyOf:
            - $ref: '#/components/schemas/MapsLocationInfo'
            - type: 'null'
        topics:
          items:
            $ref: '#/components/schemas/MapsReviewTopic'
          type: array
          title: Topics
        reviews:
          items:
            $ref: '#/components/schemas/MapsReview'
          type: array
          title: Reviews
        pagination:
          $ref: '#/components/schemas/Pagination'
      type: object
      required:
        - pagination
      title: MapsReviewsResponse
      description: Response for GET /api/v1/maps/reviews.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    MapsLocationInfo:
      properties:
        title:
          type: string
          title: Title
        address:
          anyOf:
            - type: string
            - type: 'null'
          title: Address
        rating:
          anyOf:
            - type: number
            - type: 'null'
          title: Rating
        reviews_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Reviews Count
      type: object
      required:
        - title
      title: MapsLocationInfo
      description: Location summary in review responses.
    MapsReviewTopic:
      properties:
        keyword:
          type: string
          title: Keyword
        mentions:
          type: integer
          title: Mentions
          default: 0
        id:
          anyOf:
            - type: string
            - type: 'null'
          title: Id
      type: object
      required:
        - keyword
      title: MapsReviewTopic
      description: A review topic/keyword.
    MapsReview:
      properties:
        rating:
          type: integer
          title: Rating
        text:
          anyOf:
            - type: string
            - type: 'null'
          title: Text
        date:
          anyOf:
            - type: string
            - type: 'null'
          title: Date
        iso_date:
          anyOf:
            - type: string
            - type: 'null'
          title: Iso Date
        user:
          anyOf:
            - $ref: '#/components/schemas/MapsReviewUser'
            - type: 'null'
        likes:
          type: integer
          title: Likes
          default: 0
        images:
          items:
            type: string
          type: array
          title: Images
        response_from_owner:
          anyOf:
            - $ref: '#/components/schemas/MapsOwnerResponse'
            - type: 'null'
      type: object
      required:
        - rating
      title: MapsReview
      description: A single place review.
    Pagination:
      properties:
        current:
          anyOf:
            - type: integer
            - type: string
          title: Current
          default: 1
        next:
          anyOf:
            - type: string
            - type: 'null'
          title: Next
        total_results:
          anyOf:
            - type: integer
            - type: 'null'
          title: Total Results
        total_pages:
          anyOf:
            - type: integer
            - type: 'null'
          title: Total Pages
        page_no:
          additionalProperties:
            type: string
          type: object
          title: Page No
      type: object
      title: Pagination
      description: Pagination metadata.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    MapsReviewUser:
      properties:
        name:
          type: string
          title: Name
        contributor_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Contributor Id
        thumbnail:
          anyOf:
            - type: string
            - type: 'null'
          title: Thumbnail
        local_guide:
          type: boolean
          title: Local Guide
          default: false
        reviews_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Reviews Count
        photos_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Photos Count
      type: object
      required:
        - name
      title: MapsReviewUser
      description: User who wrote a review.
    MapsOwnerResponse:
      properties:
        text:
          type: string
          title: Text
        date:
          anyOf:
            - type: string
            - type: 'null'
          title: Date
      type: object
      required:
        - text
      title: MapsOwnerResponse
      description: Business owner response to a review.
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````