Shopify App Store Reviews Scraper
Pricing
Pay per event
Shopify App Store Reviews Scraper
๐๏ธ Extract public Shopify App Store reviews, ratings, merchant countries, usage duration, and developer replies for competitor monitoring.
Pricing
Pay per event
Rating
0.0
(0)
Developer
Stas Persiianenko
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 days ago
Last modified
Categories
Share
Extract public Shopify App Store reviews from app review pages.
Use this actor to monitor competitor ratings, merchant complaints, review dates, countries, usage duration, and developer replies from apps.shopify.com.
What does Shopify App Store Reviews Scraper do?
Shopify App Store Reviews Scraper collects structured review records from public Shopify App Store app review pages.
It turns pages like https://apps.shopify.com/klaviyo-email-marketing/reviews into a dataset you can export to CSV, JSON, Excel, Google Sheets, dashboards, or your own database.
Typical records include the app name, app slug, review ID, rating, review text, merchant name, country, usage duration, review date, developer reply, reply date, and source URLs.
Who is it for?
This actor is useful for:
- ๐งฉ Shopify app founders tracking competitor reviews.
- ๐ SaaS product teams monitoring merchant pain points.
- ๐งช Growth teams researching app positioning and churn signals.
- ๐ ๏ธ Agencies auditing Shopify app categories for clients.
- ๐ฌ Support leaders benchmarking public developer replies.
- ๐งพ Analysts building review intelligence datasets.
Why scrape Shopify App Store reviews?
Shopify merchants often describe real product problems in App Store reviews.
Those reviews can reveal:
- Pricing complaints.
- Missing features.
- Migration pain.
- App reliability issues.
- Support quality.
- Country-specific sentiment.
- How long merchants used an app before reviewing.
- How competitors respond publicly.
Data you can extract
| Field | Description |
|---|---|
appSlug | Shopify App Store app handle. |
appName | App name from the page metadata. |
appUrl | App listing URL. |
reviewsUrl | Starting reviews URL. |
pageUrl | Paginated page where the review was found. |
pageNumber | Review page number. |
reviewId | Shopify review identifier. |
reviewUrl | Direct URL for the review. |
rating | Star rating from 1 to 5. |
reviewDate | Date displayed on Shopify. |
reviewText | Full review text. |
merchantName | Merchant/store name when shown. |
country | Merchant country or region. |
usageDuration | How long the merchant used the app. |
developerReply | Developer reply text when present. |
developerReplyDate | Developer reply date when present. |
scrapedAt | Extraction timestamp. |
How much does it cost to scrape Shopify App Store reviews?
The actor uses pay-per-event pricing.
You pay a small $0.005 start fee per run and a per-review event for each saved review.
| Plan tier | Price per review |
|---|---|
| Free | $0.000027637 |
| Bronze | $0.000024033 |
| Silver | $0.000018745 |
| Gold | $0.000014420 |
| Platinum | $0.000010000 |
| Diamond | $0.000010000 |
The default input is intentionally small so first runs stay cheap.
For larger monitoring jobs, set maxReviews and maxPagesPerApp to match the number of reviews you need.
How to use it
- Open the actor on Apify.
- Add Shopify App Store app slugs, such as
klaviyo-email-marketing. - Or paste direct review URLs ending in
/reviews. - Set
maxReviews. - Optionally set a star rating filter.
- Run the actor.
- Export the dataset.
Input options
App slugs
Use app handles from Shopify App Store URLs.
Example:
{"appSlugs": ["klaviyo-email-marketing", "judge-me"],"maxReviews": 100,"maxPagesPerApp": 10,"includeDeveloperReplies": true}
Review page URLs
Use full review URLs when you already have them.
{"reviewUrls": [{ "url": "https://apps.shopify.com/klaviyo-email-marketing/reviews" }],"maxReviews": 50}
Rating filter
Collect only one star level.
{"appSlugs": ["klaviyo-email-marketing"],"rating": 1,"maxReviews": 100}
Output example
{"appSlug": "klaviyo-email-marketing","appName": "Klaviyo: Email Marketing & SMS","appUrl": "https://apps.shopify.com/klaviyo-email-marketing","reviewsUrl": "https://apps.shopify.com/klaviyo-email-marketing/reviews","pageUrl": "https://apps.shopify.com/klaviyo-email-marketing/reviews?page=1","pageNumber": 1,"reviewId": "2204756","reviewUrl": "https://apps.shopify.com/klaviyo-email-marketing/reviews/2204756","rating": 1,"reviewDate": "May 15, 2026","reviewText": "Extremely unhappy...","merchantName": "North Ones","country": "Sweden","usageDuration": "Almost 6 years using the app","developerReply": "We hear you and appreciate you sharing this openly...","developerReplyDate": "June 4, 2026","scrapedAt": "2026-07-07T00:00:00.000Z"}
Review monitoring workflows
Use the actor for recurring workflows such as:
- Weekly competitor review tracking.
- New negative review alerts.
- Country-level merchant complaint analysis.
- Product roadmap research.
- Developer reply quality benchmarking.
- Pricing complaint monitoring.
Competitor intelligence workflow
Run several competitor app slugs with a shared maxReviews limit.
Export the result to a spreadsheet.
Group by rating, country, app name, or keyword.
Look for repeated phrases in low-star reviews.
Reputation monitoring workflow
Schedule the actor daily or weekly.
Store new review IDs in your own database.
Compare fresh runs against previously seen review IDs.
Send alerts when a new 1-star or 2-star review appears.
Tips for better results
- Use direct Shopify App Store app slugs.
- Keep
maxPagesPerApprealistic for routine monitoring. - Use the rating filter for negative-review monitoring.
- Include developer replies when benchmarking support behavior.
- Export to CSV for quick review triage.
Pagination behavior
The actor follows Shopify's public Next pagination links.
It stops when it reaches:
maxReviews.maxPagesPerApp.- The last available review page.
- A duplicate page URL.
API usage with Node.js
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: process.env.APIFY_TOKEN });const run = await client.actor('automation-lab/shopify-app-store-reviews-scraper').call({appSlugs: ['klaviyo-email-marketing'],maxReviews: 100,maxPagesPerApp: 10,});const { items } = await client.dataset(run.defaultDatasetId).listItems();console.log(items);
API usage with Python
from apify_client import ApifyClientimport osclient = ApifyClient(os.environ['APIFY_TOKEN'])run = client.actor('automation-lab/shopify-app-store-reviews-scraper').call(run_input={'appSlugs': ['klaviyo-email-marketing'],'maxReviews': 100,'maxPagesPerApp': 10,})items = client.dataset(run['defaultDatasetId']).list_items().itemsprint(items)
API usage with cURL
curl -X POST "https://api.apify.com/v2/acts/automation-lab~shopify-app-store-reviews-scraper/runs?token=$APIFY_TOKEN" \-H 'Content-Type: application/json' \-d '{"appSlugs":["klaviyo-email-marketing"],"maxReviews":100,"maxPagesPerApp":10}'
MCP integration
Use this actor through Apify MCP with Claude Desktop or Claude Code.
MCP tool URL:
https://mcp.apify.com/?tools=automation-lab/shopify-app-store-reviews-scraper
Claude Code setup:
$claude mcp add apify-shopify-reviews "https://mcp.apify.com/?tools=automation-lab/shopify-app-store-reviews-scraper"
Claude Desktop JSON configuration:
{"mcpServers": {"apify-shopify-reviews": {"url": "https://mcp.apify.com/?tools=automation-lab/shopify-app-store-reviews-scraper"}}}
Example prompts:
- "Scrape the latest Shopify App Store reviews for Klaviyo and summarize the biggest complaints."
- "Find 1-star reviews for these Shopify app slugs and group them by country."
- "Monitor new developer replies on Shopify App Store reviews for my competitors."
Integrations
You can connect the dataset to:
- Google Sheets for review triage.
- Slack alerts for negative reviews.
- BigQuery or Snowflake for analysis.
- Airtable for product feedback queues.
- Zapier or Make for automated workflows.
- BI dashboards for review trends.
Scheduling
For monitoring, schedule runs daily, weekly, or monthly.
Use a small maxReviews value for frequent checks.
Use a larger value for historical analysis.
FAQ
Is this a Shopify App Store reviews scraper?
Yes. It extracts public review records from apps.shopify.com app review pages.
Does it require a Shopify account?
No. The actor uses public server-rendered review pages.
Troubleshooting
Why did I get fewer reviews than expected?
Check maxReviews, maxPagesPerApp, and the optional rating filter. Shopify pages also vary by app and may have fewer public reviews than expected.
Why are some fields empty?
Shopify does not always show every field. Merchant name, country, usage duration, and developer replies can be missing on some reviews.
Can I scrape private Shopify app data?
No. This actor only extracts public Shopify App Store review pages.
Legality and responsible use
This actor extracts publicly visible web pages.
Always follow applicable laws, Shopify's terms, and privacy requirements.
Do not use scraped data for spam, harassment, or prohibited profiling.
Related scrapers
Explore other automation-lab actors on Apify for ecommerce, marketplace, review, and lead intelligence workflows:
https://apify.com/automation-lab/google-maps-lead-finderhttps://apify.com/automation-lab/website-contact-finderhttps://apify.com/automation-lab/trustpilot-reviews-scraper
Changelog
0.1
Initial version for Shopify App Store public review pages.
Support
If a Shopify App Store page changes or a review field stops extracting, open an issue with the app URL and a small input example.