# Scrape Google Play Reviews From The Last 30 Days

**Use case:** 

A date window instead of a count. Combine the two date fields and an empty window is reported before anything is downloaded, rather than after you have paid for the crawl.

## Input

```json
{
  "mode": "reviews",
  "appIds": [
    "com.spotify.music",
    "com.whatsapp",
    "com.instagram.android",
    "com.duolingo",
    "com.netflix.mediaclient"
  ],
  "languages": [
    "en"
  ],
  "deviceTypes": [
    "phone"
  ],
  "reviewsSort": "newest",
  "maxReviewsPerApp": 2000,
  "reviewsPerRequest": 1000,
  "searchTerms": [
    "habit tracker"
  ],
  "developers": [],
  "categories": [],
  "countries": [
    "us"
  ],
  "maxAppsPerQuery": 20,
  "includeAppDetails": true,
  "includePermissions": false,
  "stars": [],
  "reviewTextContains": "",
  "appVersions": [],
  "withReplyOnly": false,
  "newerThanDays": 30,
  "postedBefore": "",
  "minScore": 0,
  "maxScore": 0,
  "minInstalls": 0,
  "minRatings": 0,
  "freeOnly": false,
  "paidOnly": false,
  "withoutAdsOnly": false,
  "titleContains": "",
  "onlyNew": false,
  "emitUnchanged": false,
  "maxItems": 2000,
  "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`).
