# ClashOfClans Game User Reviews and Ratings Scraper

**Use case:** 

Extract 1,000 user reviews and ratings for apps' games like Chess and Clash of Clans. Analyze user sentiment easily.

## Input

```json
{
  "action": "scrapeSimilarApps",
  "scrapeReviews.appId": "com.supercell.clashofclans",
  "scrapeAppSearch.keywords": [
    "trading",
    "market",
    "stocks",
    "investing",
    "crypto"
  ],
  "scrapeAppUrls.urls": [
    "https://play.google.com/store/apps/details?id=com.tradingview.tradingviewapp"
  ],
  "scrapeSimilarApps.urls": [
    "https://play.google.com/store/apps/details?id=com.tradingview.tradingviewapp"
  ],
  "count": 1000,
  "cursor": ""
}
```

## Output

```json
{
  "appId": {
    "label": "App ID",
    "format": "text"
  },
  "title": {
    "label": "App Title",
    "format": "text"
  },
  "userName": {
    "label": "Reviewer",
    "format": "text"
  },
  "score": {
    "label": "Rating",
    "format": "number"
  },
  "content": {
    "label": "Review Text",
    "format": "text"
  },
  "installs": {
    "label": "Installs",
    "format": "text"
  },
  "developer": {
    "label": "Developer",
    "format": "text"
  },
  "at": {
    "label": "Date",
    "format": "date"
  }
}
```

## About this Actor

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