# ▶️ Google Play Reviews Scraper — Ratings & Replies

**Use case:** 

No-code, cheap Google Play reviews API. Scrape app review data: author, star rating, review text, date, thumbs-up, app version, reply — cheapest per item.

## Input

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

## Output

```json
{
  "appId": {
    "label": "App Id",
    "format": "text"
  },
  "reviewId": {
    "label": "Review Id",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "avatar": {
    "label": "Avatar",
    "format": "image"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "text": {
    "label": "Text",
    "format": "text"
  },
  "date": {
    "label": "Date",
    "format": "date"
  },
  "thumbsUp": {
    "label": "Thumbs Up",
    "format": "number"
  },
  "appVersion": {
    "label": "App Version",
    "format": "text"
  },
  "replyText": {
    "label": "Reply Text",
    "format": "text"
  },
  "replyDate": {
    "label": "Reply Date",
    "format": "text"
  }
}
```

## About this Actor

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