# Find Negative App Store Reviews Worldwide

**Use case:** 

Pull only 1- and 2-star App Store reviews across every country storefront. Feed them to an LLM for a global bug and churn report in minutes.

## Input

```json
{
  "apps": [
    "310633997"
  ],
  "countries": [
    "us",
    "gb",
    "de",
    "fr",
    "jp",
    "br",
    "in",
    "mx"
  ],
  "maxReviewsPerCountry": 200,
  "sortBy": "mostRecent",
  "minRating": 1,
  "maxRating": 2,
  "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.