# Scrape App Store Reviews & Ratings

**Use case:** 

Scrape App Store reviews for any app: star rating, title, text, author, date and version — newest or most helpful first. No login. Export to CSV.

## Input

```json
{
  "mode": "reviews",
  "searchTerms": [
    "habit tracker"
  ],
  "appIds": [
    "324684580"
  ],
  "collection": "TOP_FREE",
  "genre": "ALL",
  "maxAppsPerQuery": 50,
  "fullDetails": true,
  "maxReviewsPerApp": 100,
  "reviewsSort": "mostrecent",
  "country": "us",
  "language": "",
  "monitorMode": false,
  "monitorStoreName": "app-store-monitor",
  "maxConcurrency": 6,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type"
  },
  "appId": {
    "label": "App ID"
  },
  "userName": {
    "label": "User"
  },
  "score": {
    "label": "Rating"
  },
  "title": {
    "label": "Title"
  },
  "text": {
    "label": "Review"
  },
  "appVersion": {
    "label": "App version"
  },
  "voteSum": {
    "label": "Helpful votes"
  },
  "updated": {
    "label": "Date"
  }
}
```

## About this Actor

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