# Spotify Google Play Reviews as JSON

**Use case:** 

Newest Spotify reviews from Google Play: rating, text, app version and developer replies as clean JSON. Flat price per review, platform usage included.

## Input

```json
{
  "appIds": [
    "com.spotify.music"
  ],
  "sort": "newest",
  "maxReviewsPerApp": 100,
  "language": "en",
  "country": "US"
}
```

## Output

```json
{
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "text": {
    "label": "Review text",
    "format": "string"
  },
  "userName": {
    "label": "Reviewer",
    "format": "string"
  },
  "date": {
    "label": "Date",
    "format": "string"
  },
  "appVersion": {
    "label": "App version",
    "format": "string"
  },
  "thumbsUp": {
    "label": "Thumbs up",
    "format": "number"
  },
  "replyText": {
    "label": "Developer reply",
    "format": "string"
  },
  "reviewUrl": {
    "label": "Review URL",
    "format": "string"
  }
}
```

## About this Actor

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