Shopify App Reviews Scraper avatar

Shopify App Reviews Scraper

Pricing

from $0.06 / 1,000 review records

Go to Apify Store
Shopify App Reviews Scraper

Shopify App Reviews Scraper

Scrape public Shopify App Store reviews with star ratings, merchant details, app rating totals, filters, and developer replies.

Pricing

from $0.06 / 1,000 review records

Rating

0.0

(0)

Developer

Hanna Nosova

Hanna Nosova

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

a day ago

Last modified

Categories

Share

Scrape public Shopify App Store reviews, star ratings, merchant feedback, developer replies, and app-level rating metrics from Shopify app listings.

Use it to monitor competitor sentiment, discover merchant pain points, track support quality, and build review datasets for ecommerce app research.

What does Shopify App Reviews Scraper do?

Shopify App Reviews Scraper collects public review records from Shopify App Store app pages.

It accepts app listing URLs or app handles and returns structured review rows in an Apify dataset.

Each row includes the app context, review rating, review text, date, merchant details when visible, and app-level rating totals.

Who is it for?

Shopify app developers

Use review data to understand what merchants praise, what frustrates them, and where competing apps leave gaps.

Ecommerce agencies

Compare Shopify apps before recommending tools to clients.

Product managers

Track sentiment changes and prioritize roadmap ideas from real merchant feedback.

Investors and analysts

Measure market traction and customer happiness across Shopify ecosystem apps.

Support and success teams

Find recurring support complaints and developer response patterns.

Why use this scraper?

  • โญ Collect review text and star ratings in one dataset
  • ๐Ÿงญ Track competitor app sentiment over time
  • ๐Ÿ’ฌ Capture developer replies when visible
  • ๐Ÿท๏ธ Filter by star rating for targeted research
  • ๐Ÿ“Š Export clean data to CSV, JSON, Excel, or your BI tool
  • ๐Ÿ” Schedule recurring runs on Apify

What data can you extract?

FieldDescription
appHandleShopify App Store app handle
appNameApp name shown on the listing
appUrlShopify App Store app URL
reviewsUrlReview page URL used for the record
aggregateRatingApp-level rating
aggregateReviewCountApp-level review count
ratingDistributionVisible count by star rating
reviewIdUnique review identifier
reviewUrlDirect review share URL
ratingReview star rating
reviewTextMerchant review text
reviewDatePublic review date text
merchantNameMerchant/store name when visible
merchantCountryMerchant country when visible
merchantUsageHow long the merchant used the app, when visible
developerReplyTextDeveloper reply text when visible
developerReplyDateDeveloper reply date when available
pageNumberReview page number
scrapedAtTimestamp when the record was scraped

How much does it cost to scrape Shopify App Store reviews?

This actor uses pay-per-event pricing.

You pay a small start fee per run and a per-review fee for records saved to the dataset.

Small tests with a few reviews are inexpensive, while larger monitoring jobs scale with the number of review records collected.

Quick start

  1. Open the actor on Apify.
  2. Paste one or more Shopify App Store app URLs.
  3. Set the maximum number of reviews per app.
  4. Optionally select star ratings to filter.
  5. Click Start.
  6. Download the results from the dataset.

Input options

Shopify App Store app URLs

Paste URLs such as:

https://apps.shopify.com/judgeme/reviews
https://apps.shopify.com/klaviyo-email-marketing

App handles

You can also enter handles directly:

judgeme
klaviyo-email-marketing

Maximum reviews per app

Controls how many review rows are saved for each app.

Start with 25 for quick tests.

Increase the value for historical analysis.

Rating filter

Select one or more star ratings when you want only positive or negative reviews.

Examples:

  • 5-star reviews for testimonial mining
  • 1-star and 2-star reviews for pain-point research
  • 3-star reviews for feature-gap discovery

Locale

Use a Shopify App Store locale code such as en, de, fr, es, ja, or pt-BR.

Maximum pages per app

A safety cap that prevents unexpectedly long runs.

Each Shopify App Store review page usually contains around ten reviews.

Output example

{
"appHandle": "judgeme",
"appName": "Judge.me Product Reviews App",
"appUrl": "https://apps.shopify.com/judgeme",
"reviewId": "2238961",
"rating": 5,
"reviewText": "Juge.me supports everything we could ask of a review platform...",
"reviewDate": "June 10, 2026",
"merchantName": "Makeup A Murder, INC",
"merchantCountry": "United States",
"merchantUsage": "Over 6 years using the app",
"aggregateRating": 5,
"aggregateReviewCount": 40553,
"scrapedAt": "2026-06-27T19:14:07.583Z"
}

Tips for better results

  • Start with one app and a low review limit.
  • Use rating filters for focused sentiment research.
  • Schedule repeated runs if you want review monitoring.
  • Use app handles when you already have a list of competitors.
  • Keep page limits aligned with your maximum review count.

Common use cases

Competitor review monitoring

Track competing Shopify apps and identify new complaints or praised features.

Voice-of-customer research

Export review text to analyze merchant language and buying triggers.

Product roadmap research

Find repeated feature requests and workflow blockers.

Agency app selection

Compare apps by merchant sentiment before recommending them to clients.

Reputation tracking

Monitor your own app reviews and developer reply coverage.

Integrations

Use Apify integrations to send results to:

  • Google Sheets for review dashboards
  • Slack for new negative-review alerts
  • Make or Zapier for automated workflows
  • BigQuery or Snowflake for analytics
  • Webhooks for custom monitoring systems

API usage

Node.js

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor('fetch_cat/shopify-app-reviews-scraper').call({
appUrls: [{ url: 'https://apps.shopify.com/judgeme/reviews' }],
maxReviewsPerApp: 25
});
console.log(run.defaultDatasetId);

Python

from apify_client import ApifyClient
import os
client = ApifyClient(os.environ['APIFY_TOKEN'])
run = client.actor('fetch_cat/shopify-app-reviews-scraper').call(run_input={
'appUrls': [{'url': 'https://apps.shopify.com/judgeme/reviews'}],
'maxReviewsPerApp': 25,
})
print(run['defaultDatasetId'])

cURL

curl -X POST 'https://api.apify.com/v2/acts/fetch_cat~shopify-app-reviews-scraper/runs?token=YOUR_APIFY_TOKEN' \
-H 'Content-Type: application/json' \
-d '{"appUrls":[{"url":"https://apps.shopify.com/judgeme/reviews"}],"maxReviewsPerApp":25}'

MCP usage

Connect this actor to MCP-compatible tools through Apify MCP Server.

Use this MCP URL pattern:

https://mcp.apify.com/?tools=fetch_cat/shopify-app-reviews-scraper

Claude Code setup example:

$claude mcp add apify-shopify-reviews https://mcp.apify.com/?tools=fetch_cat/shopify-app-reviews-scraper

MCP JSON configuration example:

{
"mcpServers": {
"apify-shopify-reviews": {
"url": "https://mcp.apify.com/?tools=fetch_cat/shopify-app-reviews-scraper"
}
}
}

Example prompts:

  • "Scrape the latest 50 reviews for the Judge.me Shopify app."
  • "Find 1-star reviews for this Shopify app and summarize merchant complaints."
  • "Compare review sentiment for these three Shopify apps."

Scheduling

Create an Apify schedule to run the scraper daily, weekly, or monthly.

This is useful for ongoing monitoring of your app or competitors.

Export formats

Dataset results can be downloaded as:

  • JSON
  • CSV
  • Excel
  • XML
  • RSS
  • HTML table

Data quality notes

The actor returns fields that are publicly visible on Shopify App Store review pages.

Some merchant details or developer replies may be absent on specific reviews.

When a field is not visible, the value is returned as null.

Limits

Shopify App Store review availability depends on the public listing.

Very old pages or filtered views may return fewer records than requested.

Use sensible review and page limits for predictable run time.

FAQ

Can I use the scraper through the API?

Yes. Use the API examples above or call the actor from any Apify client with app URLs, handles, limits, and filters.

Can I use it with MCP?

Yes. Use the MCP URL and configuration examples above to connect the actor to compatible AI tools.

Troubleshooting

The run returned no reviews

Check that the app handle or URL is valid and that the app has public reviews.

Try the app listing URL in a browser, then rerun with a small limit.

I got fewer reviews than requested

The selected rating filter may have fewer matching reviews, or the page limit may be too low.

Increase maxPagesPerApp or remove rating filters.

Some reply fields are empty

Developer replies are only returned when they are visible for a review.

Legality

This actor collects publicly available information from Shopify App Store pages.

You are responsible for using the data in line with applicable laws, Shopify terms, and privacy requirements.

Avoid collecting or using personal data in a way that violates regulations or platform rules.

Support

If you need a field that is visible on Shopify App Store review pages but missing from the output, open an issue on Apify and include a sample app URL.

Changelog

0.1

Initial version for public Shopify App Store review extraction.