# Compare App Store Prices Across Countries

**Use case:** 

Apple sells the same app at different prices and with different ratings in every storefront. Switch this on and you get one app row per storefront instead of one per app, which is the only way to see the spread.

## Input

```json
{
  "appIds": [
    "1232780281",
    "324684580",
    "389801252",
    "570060128",
    "284882215"
  ],
  "startUrls": [],
  "searchTerms": [],
  "appsPerTerm": 50,
  "developerIds": [],
  "charts": [
    "topFree"
  ],
  "chartGenres": [],
  "chartLimit": 5,
  "countries": [
    "us",
    "gb",
    "de",
    "fr",
    "jp",
    "br",
    "in",
    "au",
    "ca",
    "mx"
  ],
  "platform": "iphone",
  "includeAppDetails": true,
  "appsFromEveryCountry": true,
  "includeReviews": false,
  "reviewsPerApp": 20,
  "reviewSort": [
    "mostRecent"
  ],
  "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": 500
}
```

## Output

```json
{
  "app_name": {
    "label": "app_name",
    "format": "string"
  },
  "developer": {
    "label": "developer",
    "format": "string"
  },
  "country": {
    "label": "country",
    "format": "string"
  },
  "primary_genre": {
    "label": "primary_genre",
    "format": "string"
  },
  "formatted_price": {
    "label": "formatted_price",
    "format": "string"
  },
  "rating": {
    "label": "rating",
    "format": "integer"
  },
  "rating_count": {
    "label": "rating_count",
    "format": "integer"
  },
  "version": {
    "label": "version",
    "format": "string"
  },
  "days_since_update": {
    "label": "days_since_update",
    "format": "integer"
  },
  "app_url": {
    "label": "app_url",
    "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`).
