# Google Maps Place Reviews by URL

**Use case:** 

Extract reviews from specific Google Maps place URLs, sorted by relevance, with localized language and origin settings.

## Input

```json
{
  "placeUrls": [
    "https://www.google.com/maps/place/Statue+of+Liberty+National+Monument/",
    "https://www.google.com/maps/place/British+Museum/"
  ],
  "maxReviewsPerPlace": 50,
  "sortBy": "mostRelevant",
  "language": "en",
  "reviewsOrigin": "GB",
  "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.