# Shopify App Reviews (`getdataforme/shopify-app-reviews`) Actor

Extract detailed reviews from Shopify app pages, including ratings, dates, texts, and reviewer info. Supports multi-URL batch scraping, configurable limits, and proxies for reliable data collection....

- **URL**: https://apify.com/getdataforme/shopify-app-reviews.md
- **Developed by:** [GetDataForMe](https://apify.com/getdataforme) (community)
- **Categories:** E-commerce, AI, Automation
- **Stats:** 30 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: 1.00 out of 5 stars

## Pricing

from $5.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Shopify App Reviews

### Introduction

The Shopify App Reviews Actor is a powerful web scraping tool designed to extract detailed reviews from Shopify app pages. It automates the collection of user feedback, ratings, and reviewer information, enabling businesses and researchers to gain valuable insights into app performance and user sentiment. This Actor simplifies data gathering, saving time and effort while ensuring high-quality, structured output for analysis.

### Features

- **Comprehensive Data Extraction**: Scrapes review IDs, ratings, dates, texts, reviewer names, countries, and experience levels.
- **Multi-URL Support**: Processes multiple Shopify app URLs in a single run for efficient batch scraping.
- **Configurable Limits**: Set item limits to control the number of reviews extracted per URL.
- **Proxy Integration**: Uses residential proxies to avoid IP blocks and ensure reliable scraping.
- **Structured Output**: Delivers clean JSON data, ready for export to CSV, Excel, or databases.
- **High Performance**: Built with Python Scrapy for fast and scalable scraping operations.
- **Error Handling**: Includes robust mechanisms to manage failed requests and retries.

### Input Parameters

| Parameter | Type | Required | Description | Example |
|-----------|------|----------|-------------|---------|
| urls | array | Yes | A list of URLs of Shopify app pages to scrape reviews from. | \["https://apps.shopify.com/mailchimp?ot=6dd0cb80-f948-429b-ac61-7c99a8dcbfe9\&surface\_detail=homepage-ads\&surface\_intra\_position=1\&surface\_type=home\&surface\_version=redesign"] |
| itemLimit | integer | No | Specifies the maximum number of reviews to process per URL. | 100 |
| proxyConfiguration | object | No | Configures proxy servers to hide the scraper's origin and avoid blocks. | {"useApifyProxy": true, "apifyProxyGroups": \["RESIDENTIAL"]} |

### Example Usage

#### Input JSON

```json
{
  "urls": [
    "https://apps.shopify.com/mailchimp?ot=6dd0cb80-f948-429b-ac61-7c99a8dcbfe9&surface_detail=homepage-ads&surface_intra_position=1&surface_type=home&surface_version=redesign"
  ],
  "itemLimit": 100,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": ["RESIDENTIAL"]
  }
}
```

#### Output JSON

```json
[
  {
    "review_id": "1925676",
    "rating": 5,
    "review_date": "October 21, 2025",
    "review_text": "I have been using the app for many years! Today Brain Helped me with setting up on my collection page to show only a product reviews. Very happy with this result! thanks again Brian !",
    "reviewer_name": "Pet ID Tags",
    "reviewer_country": "Australia",
    "reviewer_experience": "Almost 8 years using the app",
    "review_url": "https://apps.shopify.com/reviews/1925676"
  }
]
```

### Use Cases

- **Market Research**: Analyze trends in app reviews to understand user preferences and market demands.
- **Competitive Intelligence**: Compare reviews across similar apps to identify strengths and weaknesses.
- **Customer Feedback Analysis**: Aggregate reviewer sentiments for product improvement insights.
- **Content Aggregation**: Collect reviews for blogs, reports, or dashboards.
- **Academic Research**: Study user behavior and app adoption patterns in e-commerce.
- **Business Automation**: Automate review monitoring for ongoing performance tracking.

### Installation and Usage

1. Search for "Shopify App Reviews" in the Apify Store
2. Click "Try for free" or "Run"
3. Configure input parameters
4. Click "Start" to begin extraction
5. Monitor progress in the log
6. Export results in your preferred format (JSON, CSV, Excel)

### Output Format

The Actor outputs an array of JSON objects, each representing a single review. Key fields include:

- `review_id`: Unique identifier for the review.
- `rating`: Numerical rating (e.g., 1-5).
- `review_date`: Date of the review.
- `review_text`: Full text of the review.
- `reviewer_name`: Name of the reviewer.
- `reviewer_country`: Country of the reviewer.
- `reviewer_experience`: Reviewer's usage duration.
- `review_url`: Direct link to the review.

Data is structured for easy integration into databases or analysis tools.

### Support

For custom/simplified outputs or bug reports, please contact:

- Email: support@getdataforme.com
- Subject line: "custom support"
- Contact form: https://getdataforme.com/contact/

We're here to help you get the most out of this Actor!

***

# Actor input Schema

## `urls` (type: `array`):

A list of URLs of the web pages you want to scrape data from.

## `itemLimit` (type: `integer`):

Specifies the maximum number of items to process.

## `proxyConfiguration` (type: `object`):

Specifies proxy servers that will be used by the scraper in order to hide its origin.

## Actor input object example

```json
{
  "urls": [
    "https://apps.shopify.com/mailchimp?ot=6dd0cb80-f948-429b-ac61-7c99a8dcbfe9&surface_detail=homepage-ads&surface_intra_position=1&surface_type=home&surface_version=redesign"
  ],
  "itemLimit": 100,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "urls": [
        "https://apps.shopify.com/mailchimp?ot=6dd0cb80-f948-429b-ac61-7c99a8dcbfe9&surface_detail=homepage-ads&surface_intra_position=1&surface_type=home&surface_version=redesign"
    ],
    "itemLimit": 100,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("getdataforme/shopify-app-reviews").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "urls": ["https://apps.shopify.com/mailchimp?ot=6dd0cb80-f948-429b-ac61-7c99a8dcbfe9&surface_detail=homepage-ads&surface_intra_position=1&surface_type=home&surface_version=redesign"],
    "itemLimit": 100,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("getdataforme/shopify-app-reviews").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "urls": [
    "https://apps.shopify.com/mailchimp?ot=6dd0cb80-f948-429b-ac61-7c99a8dcbfe9&surface_detail=homepage-ads&surface_intra_position=1&surface_type=home&surface_version=redesign"
  ],
  "itemLimit": 100,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call getdataforme/shopify-app-reviews --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=getdataforme/shopify-app-reviews",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/cGbyHRumzoP7dW53l/builds/kcPiMsd8ms8jB7jgn/openapi.json
