# Google Play Review Monitor

**Use case:** 

Monitor Google Play app reviews with rating filters, newest sorting, review text, author, score, app ID, and localized metadata.

## Input

```json
{
  "mode": "reviews",
  "searchTerms": [
    "whatsapp"
  ],
  "appIds": [
    "com.whatsapp",
    "com.spotify.music"
  ],
  "maxResults": 100,
  "country": "us",
  "language": "en",
  "reviewSort": "newest",
  "reviewScore": 5
}
```

## Output

```json
{
  "reviewId": {
    "label": "Review ID",
    "format": "string"
  },
  "appId": {
    "label": "App ID",
    "format": "string"
  },
  "userName": {
    "label": "User Name",
    "format": "string"
  },
  "score": {
    "label": "Score",
    "format": "number"
  },
  "text": {
    "label": "Text",
    "format": "string"
  },
  "url": {
    "label": "Url",
    "format": "string"
  },
  "date": {
    "label": "Date",
    "format": "string"
  },
  "thumbsUp": {
    "label": "Thumbs Up",
    "format": "number"
  },
  "version": {
    "label": "Version",
    "format": "string"
  }
}
```

## About this Actor

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