# Shopify App Reviews Scraper – Export to JSON/CSV

**Use case:** 

Export any Shopify app's reviews to JSON/CSV: rating, text, store name, country, developer replies. No start fee — $0.0001 per review.

## Input

```json
{
  "mode": "reviews",
  "appHandles": [
    "judgeme"
  ],
  "maxApps": 50,
  "maxReviewsPerApp": 50,
  "reviewsSort": "newest",
  "lang": "en"
}
```

## Output

```json
{
  "handle": {
    "label": "App",
    "format": "text"
  },
  "storeName": {
    "label": "Store",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "body": {
    "label": "Review",
    "format": "text"
  },
  "usedAppFor": {
    "label": "Used for",
    "format": "text"
  },
  "date": {
    "label": "Date",
    "format": "text"
  }
}
```

## About this Actor

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