# Google Play App Reviews Scraper

**Use case:** 

Scrape Google Play app reviews, ratings and app metadata for any app. Newest or top reviews, any country. Clean CSV.

## Input

```json
{
  "appIds": [
    "com.whatsapp"
  ],
  "maxReviews": 200,
  "sort": "newest",
  "includeAppInfo": true,
  "country": "us",
  "language": "en"
}
```

## Output

```json
{
  "app_id": {
    "label": "App id"
  },
  "app_title": {
    "label": "App title"
  },
  "author": {
    "label": "Author"
  },
  "rating": {
    "label": "Rating"
  },
  "text": {
    "label": "Text"
  },
  "thumbs_up": {
    "label": "Thumbs up"
  },
  "review_date": {
    "label": "Review date"
  },
  "app_version": {
    "label": "App version"
  },
  "developer_reply": {
    "label": "Developer reply"
  },
  "review_id": {
    "label": "Review id"
  }
}
```

## About this Actor

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