# Apple App Store Reviews Scraper - iOS App Reviews API

**Use case:** 

Scrape Apple App Store reviews and ratings for any iOS app by country. No API key, pay per result.

## Input

```json
{
  "mode": "reviews",
  "apps": [
    "Spotify"
  ],
  "searchTerms": [
    "meditation",
    "habit tracker"
  ],
  "platform": "apple",
  "countries": [
    "us"
  ],
  "includeReviews": true,
  "maxReviewsPerApp": 100,
  "sort": "newest",
  "chartType": "topfree",
  "limit": 50
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "text"
  },
  "platform": {
    "label": "Store",
    "format": "text"
  },
  "title": {
    "label": "Title / App",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "ratingCount": {
    "label": "# Ratings",
    "format": "number"
  },
  "appId": {
    "label": "App ID",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "userName": {
    "label": "Reviewer",
    "format": "text"
  },
  "text": {
    "label": "Review",
    "format": "text"
  },
  "rank": {
    "label": "Chart rank",
    "format": "number"
  },
  "searchTerm": {
    "label": "Keyword",
    "format": "text"
  },
  "position": {
    "label": "Rank",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [App Store + Google Play Reviews & ASO Scraper](https://apify.com/renzomacar/app-store-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/renzomacar/app-store-scraper) to learn more, explore other use cases, and run it yourself.