# Shopify App Details & Pricing Scraper

**Use case:** 

Scrape Shopify App Store listing data — ratings, review count, developer, categories, and per-tier pricing plans — for any app. Export to JSON/CSV, no start fe

## Input

```json
{
  "mode": "details",
  "appHandles": [
    "klaviyo-email-marketing",
    "judgeme",
    "loox"
  ],
  "maxApps": 50,
  "maxReviewsPerApp": 200,
  "reviewsSort": "newest",
  "lang": "en"
}
```

## Output

```json
{
  "title": {
    "label": "App",
    "format": "text"
  },
  "handle": {
    "label": "Handle",
    "format": "text"
  },
  "developer": {
    "label": "Developer",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "# Reviews",
    "format": "number"
  },
  "pricingSummary": {
    "label": "Pricing",
    "format": "text"
  },
  "builtForShopify": {
    "label": "Built for Shopify",
    "format": "boolean"
  },
  "icon": {
    "label": "Icon",
    "format": "image"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## 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.