# App Review Monitoring on the App Store, Daily Feed

**Use case:** 

Three UK fintech apps, only reviews from the last day, up to a hundred each: with most-recent order the walk stops at the date cut, so a morning schedule reads a page per app and bills only what is new. The date is relative and resolved on the day it runs. Route low stars to support, unanswered ones to the reply queue. Cost: 300 review rows at $0.004 = at most $1.20 a run.

## Input

```json
{
  "appIds": [
    "932493382",
    "1052238659",
    "612261027"
  ],
  "startUrls": [],
  "appNames": [],
  "countries": [
    "gb"
  ],
  "maxReviewsPerApp": 100,
  "sort": "most_recent",
  "minRating": 0,
  "maxRating": 0,
  "sinceDate": "1 day",
  "requireText": false,
  "includeAppRow": true,
  "sessions": 4,
  "perIp": 1,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "string"
  },
  "app_name": {
    "label": "App name",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "integer"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "text": {
    "label": "Text",
    "format": "string"
  },
  "version": {
    "label": "Version",
    "format": "string"
  },
  "review_day": {
    "label": "Review day",
    "format": "string"
  },
  "developer_response": {
    "label": "Developer response",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "error": {
    "label": "Error",
    "format": "string"
  }
}
```

## About this Actor

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