# Scrape Spotify Reviews — Google Play

**Use case:** 

Scrape Spotify reviews from Google Play. Extract ratings, text, date, helpful votes, dev replies.

## Input

```json
{
  "mode": "reviews",
  "platform": "googlePlay",
  "searchQueries": [
    "fitness tracker"
  ],
  "maxAppsPerQuery": 10,
  "appIds": [
    "com.spotify.music"
  ],
  "maxReviewsPerApp": 50,
  "reviewSort": "newest",
  "chartType": "topFree",
  "chartCategory": "APPLICATION",
  "maxAppsPerChart": 100,
  "developerIds": [
    "Google LLC"
  ],
  "fetchFullDetails": true,
  "country": "us",
  "language": "en"
}
```

## Output

```json
{
  "platform": {
    "label": "Platform",
    "format": "text"
  },
  "appId": {
    "label": "App id"
  },
  "appTitle": {
    "label": "App",
    "format": "text"
  },
  "rating": {
    "label": "Stars",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "text": {
    "label": "Review",
    "format": "text"
  },
  "date": {
    "label": "Date",
    "format": "date"
  },
  "thumbsUpCount": {
    "label": "Helpful",
    "format": "number"
  },
  "appVersion": {
    "label": "App version"
  },
  "authorName": {
    "label": "Author",
    "format": "text"
  },
  "replyText": {
    "label": "Dev Reply",
    "format": "text"
  },
  "replyDate": {
    "label": "Reply date"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

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