# Export iOS App Reviews to JSON

**Use case:** 

Get iOS App Store reviews as clean JSON — rating, title, body, author, app version and country. Official Apple endpoints, no scraping.

## Input

```json
{
  "apps": [
    "310633997"
  ],
  "countries": [
    "us"
  ],
  "maxReviewsPerCountry": 500,
  "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.