# Track mobile game reviews & player feedback

**Use case:** 

Scrape Google Play reviews for any mobile game — track player ratings, feature requests, and bug reports across updates.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://play.google.com/store/apps/details?id=com.mojang.minecraftpe"
    }
  ],
  "maxReviews": 1000,
  "sortBy": "NEWEST",
  "rating": "ALL",
  "language": "en",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "userName": {
    "label": "User Name",
    "format": "string"
  },
  "rating": {
    "label": "Star Rating",
    "format": "integer"
  },
  "text": {
    "label": "Review Text",
    "format": "string"
  },
  "reviewDate": {
    "label": "Review Date",
    "format": "string"
  },
  "appId": {
    "label": "App ID",
    "format": "string"
  }
}
```

## About this Actor

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