# Search App Store Reviews By Keyword

**Use case:** 

Keeps a review only when its title or text mentions one of your words - crash, refund, subscription, bug. Reviews with no text at all are not removed by this filter, because there is nothing there to reject them on.

## Input

```json
{
  "appIds": [
    "1232780281",
    "324684580",
    "389801252",
    "570060128",
    "284882215"
  ],
  "startUrls": [],
  "searchTerms": [],
  "appsPerTerm": 50,
  "developerIds": [],
  "charts": [
    "topFree"
  ],
  "chartGenres": [],
  "chartLimit": 5,
  "countries": [
    "us",
    "gb",
    "au"
  ],
  "platform": "iphone",
  "includeAppDetails": true,
  "appsFromEveryCountry": false,
  "includeReviews": true,
  "reviewsPerApp": 500,
  "reviewSort": [
    "mostRecent"
  ],
  "minReviewRating": 0,
  "maxReviewRating": 0,
  "reviewsWithinDays": 0,
  "keywords": [
    "crash",
    "refund",
    "subscription"
  ],
  "excludeKeywords": [],
  "genres": [],
  "developerNameContains": [],
  "freeOnly": false,
  "paidOnly": false,
  "minRatingCount": 0,
  "minAppRating": 0,
  "updatedWithinDays": 0,
  "onlyNew": false,
  "emitUnchanged": false,
  "includeScreenshots": false,
  "compactOutput": false,
  "excludeEmptyFields": false,
  "maxItems": 1000
}
```

## Output

```json
{
  "app_name": {
    "label": "app_name",
    "format": "string"
  },
  "country": {
    "label": "country",
    "format": "string"
  },
  "review_rating": {
    "label": "review_rating",
    "format": "integer"
  },
  "review_title": {
    "label": "review_title",
    "format": "string"
  },
  "review_text": {
    "label": "review_text",
    "format": "string"
  },
  "review_author": {
    "label": "review_author",
    "format": "string"
  },
  "review_updated_at": {
    "label": "review_updated_at",
    "format": "string"
  },
  "review_app_version": {
    "label": "review_app_version",
    "format": "string"
  },
  "review_sort_window": {
    "label": "review_sort_window",
    "format": "string"
  }
}
```

## About this Actor

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