# Get More Than 500 App Store Reviews

**Use case:** 

Apple hands out at most 500 reviews per storefront per sort order. Two levers get past that: both sort orders, which are two barely overlapping windows - measured on a 90,000-rating app, 500 plus 500 gave 937 unique reviews - and extra storefronts, each of which is its own pool.

## Input

```json
{
  "appIds": [
    "1232780281"
  ],
  "startUrls": [],
  "searchTerms": [],
  "appsPerTerm": 50,
  "developerIds": [],
  "charts": [
    "topFree"
  ],
  "chartGenres": [],
  "chartLimit": 5,
  "countries": [
    "us",
    "gb",
    "ca",
    "au",
    "de",
    "fr",
    "in",
    "br"
  ],
  "platform": "iphone",
  "includeAppDetails": true,
  "appsFromEveryCountry": false,
  "includeReviews": true,
  "reviewsPerApp": 500,
  "reviewSort": [
    "mostRecent",
    "mostHelpful"
  ],
  "minReviewRating": 0,
  "maxReviewRating": 0,
  "reviewsWithinDays": 0,
  "keywords": [],
  "excludeKeywords": [],
  "genres": [],
  "developerNameContains": [],
  "freeOnly": false,
  "paidOnly": false,
  "minRatingCount": 0,
  "minAppRating": 0,
  "updatedWithinDays": 0,
  "onlyNew": false,
  "emitUnchanged": false,
  "includeScreenshots": false,
  "compactOutput": false,
  "excludeEmptyFields": false,
  "maxItems": 5000
}
```

## 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`).
