# Export Recent Google Reviews for a Business

**Use case:** 

Grab the latest 200 Google reviews for one place in a single run and export the full dataset, ideal for a reputation audit or a starting baseline.

## Input

```json
{
  "locations": [
    {
      "clientName": "The Grand Hotel — Chicago",
      "googleMapsUrl": "https://www.google.com/maps/place/The+Grand+Hotel+Chicago/@41.8919,-87.6051,17z"
    }
  ],
  "maxReviewsPerRun": 200,
  "onlyNewSinceLastRun": false,
  "alertOnNewReviews": false,
  "alertOnNegativeReviews": false,
  "negativeRatingThreshold": 3,
  "trackOwnerReplies": true,
  "detectRatingDrops": true,
  "generateAiSummary": true,
  "generateReplyDrafts": false,
  "aiModel": "gpt-4o-mini",
  "weeklyReport": false,
  "webhookUrl": "",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "clientName": {
    "label": "Client / Location",
    "format": "text"
  },
  "overallRating": {
    "label": "Rating",
    "format": "number"
  },
  "counts": {
    "label": "Counts (new/neg/unanswered/urgent)",
    "format": "object"
  },
  "ratingChange": {
    "label": "Rating change",
    "format": "object"
  },
  "agencySummary": {
    "label": "Summary",
    "format": "text"
  },
  "reportUrl": {
    "label": "Report",
    "format": "link"
  },
  "syncStatus": {
    "label": "Status",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Reviews Monitor — Multi-Location Alerts & Reports](https://apify.com/dami_studio/google-reviews-monitor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/dami_studio/google-reviews-monitor) to learn more, explore other use cases, and run it yourself.