# Feed AI with Google Maps reviews for sentiment analysis

**Use case:** Analyze sentiment

Pull Google Maps reviews for any business on a schedule and feed them to your LLM to classify sentiment, detect themes, and generate summaries across locations.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.google.com/maps/place/Yellowstone+National+Park/@44.5857951,-110.5140571,9z/data=!3m1!4b1!4m5!3m4!1s0x5351e55555555555:0xaca8f930348fe1bb!8m2!3d44.427963!4d-110.588455?hl=en-GB"
    }
  ],
  "placeIds": [
    "ChIJ2e59axpFwokR_7SocWUsIaQ"
  ],
  "maxReviews": 100,
  "reviewsSort": "newest",
  "reviewsStartDate": "2024-01-01",
  "language": "en",
  "reviewsOrigin": "all",
  "personalData": true
}
```

## Output

```json
{
  "title": {
    "label": "Place title",
    "format": "string"
  },
  "url": {
    "label": "Place Google Maps link",
    "format": "string"
  },
  "stars": {
    "label": "Stars",
    "format": "number"
  },
  "name": {
    "label": "Reviewer",
    "format": "string"
  },
  "reviewUrl": {
    "label": "Review link",
    "format": "string"
  },
  "text": {
    "label": "Review Text",
    "format": "string"
  }
}
```

## About this Actor

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