# Compare Competitor App Reviews Side by Side

**Use case:** 

Pull reviews for several apps at once across countries and compare ratings, complaints and versions in one dataset.

## Input

```json
{
  "apps": [
    "310633997",
    "com.burbn.instagram",
    "com.spotify.client"
  ],
  "countries": [
    "us",
    "gb",
    "de",
    "br",
    "in"
  ],
  "maxReviewsPerCountry": 100,
  "sortBy": "mostRecent",
  "minRating": 0,
  "maxRating": 5,
  "includeReviews": true,
  "includeMetadata": true,
  "concurrency": 8,
  "timeoutSecs": 30
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "text"
  },
  "appName": {
    "label": "App",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "rating": {
    "label": "Stars",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "body": {
    "label": "Review",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "appVersion": {
    "label": "Version",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [App Store Reviews API — All Storefronts, Per-Country Ratings](https://apify.com/fetchbase/app-store-intelligence) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fetchbase/app-store-intelligence) to learn more, explore other use cases, and run it yourself.