# New 1 and 2 star Google Play reviews from the last week

**Use case:** 

Reads the Google Play reviews of the apps you list and keeps only those rated 1 or 2 stars in the last seven days, each with the developer's reply when there is one. The filters run before a row is saved, so you pay for the complaints and nothing else. Put it on a daily schedule with a monitor name and each run returns only the ones you have not seen.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://apps.apple.com/us/app/spotify-music-and-podcasts/id324684580"
    },
    {
      "url": "https://apps.apple.com/us/app/duolingo-language-lessons/id570060128"
    },
    {
      "url": "https://play.google.com/store/apps/details?id=com.spotify.music"
    }
  ],
  "apps": [
    "com.spotify.music",
    "com.duolingo"
  ],
  "searchLimit": 10,
  "country": "us",
  "rowPer": "review",
  "reviewPages": 10,
  "maxRating": 2,
  "reviewedWithinDays": 7,
  "onlyChanges": false,
  "maxItems": 500,
  "maxConcurrency": 5,
  "useProxy": true
}
```

## Output

```json
{
  "store": {
    "label": "Store",
    "format": "string"
  },
  "title": {
    "label": "App",
    "format": "string"
  },
  "review_rating": {
    "label": "Stars",
    "format": "number"
  },
  "review_title": {
    "label": "Review",
    "format": "string"
  },
  "review_submitted_at": {
    "label": "Posted",
    "format": "string"
  },
  "rating": {
    "label": "App rating",
    "format": "number"
  },
  "rating_count": {
    "label": "Ratings",
    "format": "number"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "version": {
    "label": "Version",
    "format": "string"
  },
  "url": {
    "label": "Store page",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Play & App Store Reviews API: Ratings, Replies](https://apify.com/dododata/app-store-reviews-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/dododata/app-store-reviews-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/dododata/app-store-reviews-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`).
