# Google Maps Restaurant Review Search

**Use case:** 

Scrape recent Google Maps restaurant reviews with ratings, author details, language, country targeting, and review text.

## Input

```json
{
  "placeUrls": [
    "https://www.google.com/maps/place/Eleven+Madison+Park/"
  ],
  "maxReviewsPerPlace": 100,
  "sortBy": "newest",
  "language": "en",
  "reviewsOrigin": "US",
  "enableAIAnalysis": false
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Place Image",
    "format": "image"
  },
  "title": {
    "label": "Place Name"
  },
  "reviewerPhotoUrl": {
    "label": "Reviewer Avatar",
    "format": "image"
  },
  "reviewerName": {
    "label": "Reviewer Name"
  },
  "stars": {
    "label": "Rating (Star)",
    "format": "number"
  },
  "text": {
    "label": "Review Content"
  },
  "sentiment": {
    "label": "Sentiment"
  },
  "sentimentScore": {
    "label": "Sentiment Score",
    "format": "number"
  },
  "topics": {
    "label": "Topics"
  },
  "publishedAt": {
    "label": "Published"
  },
  "responseFromOwnerText": {
    "label": "Owner Reply"
  },
  "totalScore": {
    "label": "Place Score",
    "format": "number"
  },
  "reviewsCount": {
    "label": "Total Reviews",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Maps Reviews Scraper](https://apify.com/automation-lab/google-maps-reviews-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/google-maps-reviews-scraper) to learn more, explore other use cases, and run it yourself.