# Scrape Google Play Reviews In Every Language

**Use case:** 

Google Play stores reviews in separate buckets by the language they were written in, and the buckets do not overlap: eighteen languages on one app gave 10,800 different review ids and zero duplicates between them. One language is one bucket, so pick every language your users write in.

## Input

```json
{
  "mode": "reviews",
  "appIds": [
    "com.spotify.music"
  ],
  "languages": [
    "en",
    "es",
    "pt-BR",
    "de",
    "fr",
    "it",
    "nl",
    "pl",
    "ru",
    "tr",
    "ar",
    "hi",
    "id",
    "th",
    "vi",
    "ja",
    "ko",
    "zh-TW"
  ],
  "deviceTypes": [
    "phone"
  ],
  "reviewsSort": "newest",
  "maxReviewsPerApp": 500,
  "reviewsPerRequest": 1000,
  "searchTerms": [
    "habit tracker"
  ],
  "developers": [],
  "categories": [],
  "countries": [
    "us"
  ],
  "maxAppsPerQuery": 20,
  "includeAppDetails": true,
  "includePermissions": false,
  "stars": [],
  "reviewTextContains": "",
  "appVersions": [],
  "withReplyOnly": false,
  "newerThanDays": 0,
  "postedBefore": "",
  "minScore": 0,
  "maxScore": 0,
  "minInstalls": 0,
  "minRatings": 0,
  "freeOnly": false,
  "paidOnly": false,
  "withoutAdsOnly": false,
  "titleContains": "",
  "onlyNew": false,
  "emitUnchanged": false,
  "maxItems": 5000,
  "compact": false,
  "concurrency": 4,
  "timeoutSeconds": 30,
  "inputDatasetId": "",
  "appIdField": "app_id"
}
```

## Output

```json
{
  "position": {
    "label": "Position in the bucket",
    "format": "integer"
  },
  "app_id": {
    "label": "App ID",
    "format": "string"
  },
  "app_title": {
    "label": "App title",
    "format": "string"
  },
  "language": {
    "label": "Language",
    "format": "string"
  },
  "device_type": {
    "label": "Device type",
    "format": "string"
  },
  "score": {
    "label": "Review score",
    "format": "integer"
  },
  "text": {
    "label": "Review text",
    "format": "string"
  },
  "author": {
    "label": "Author",
    "format": "string"
  },
  "posted_at": {
    "label": "Posted at",
    "format": "string"
  },
  "thumbs_up": {
    "label": "Thumbs up",
    "format": "integer"
  },
  "app_version": {
    "label": "App version",
    "format": "string"
  },
  "reply_author": {
    "label": "Reply author",
    "format": "string"
  },
  "reply_text": {
    "label": "Developer reply",
    "format": "string"
  },
  "reply_at": {
    "label": "Reply at",
    "format": "string"
  },
  "quality_tags": {
    "label": "Quality tags",
    "format": "array"
  },
  "review_id": {
    "label": "Review ID",
    "format": "string"
  },
  "review_url": {
    "label": "Review URL",
    "format": "string"
  },
  "change_type": {
    "label": "Change type",
    "format": "string"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/snow_leo_data/google-play-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
