# Scrape Google Play reviews & ratings for an app

**Use case:** 

Scrape Google Play reviews newest-first for any app: user name, star score, review text, thumbs-up, app version, date and the developer reply.

## Input

```json
{
  "mode": "reviews",
  "searchTerms": [
    "habit tracker"
  ],
  "appIds": [
    "com.spotify.music",
    "com.duolingo"
  ],
  "collection": "TOP_FREE",
  "category": "APPLICATION",
  "maxAppsPerQuery": 50,
  "fullDetails": true,
  "includeDeveloperContacts": true,
  "includeDataSafety": false,
  "includePermissions": false,
  "maxReviewsPerApp": 200,
  "reviewsSort": "NEWEST",
  "country": "us",
  "language": "en",
  "monitorMode": false,
  "monitorStoreName": "google-play-monitor",
  "maxConcurrency": 6,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type"
  },
  "appId": {
    "label": "App ID"
  },
  "userName": {
    "label": "User"
  },
  "score": {
    "label": "Rating"
  },
  "title": {
    "label": "Title"
  },
  "text": {
    "label": "Review"
  },
  "thumbsUp": {
    "label": "Thumbs up"
  },
  "version": {
    "label": "App version"
  },
  "date": {
    "label": "Date"
  },
  "replyText": {
    "label": "Developer reply"
  },
  "url": {
    "label": "URL"
  }
}
```

## About this Actor

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