Extract customer reviews from any e-commerce product page or reviews page. Returns reviewer name, star rating, date, review title, review body, verified purchase status, and helpful votes per review. Works on Amazon, WooCommerce, Shopify, and any site with standard review markup. Supports pagination for multi-page review sections. Use when: product reviews, customer feedback, review scraping, get reviews, sentiment analysis data, review extraction, customer ratings, extract customer opinions, product feedback, user reviews, review mining, bulk review collection, review analysis, scrape ratings and comments, ecommerce review data.
Product URL → paginated customer reviews (reviewer, rating, date, title, body, verified, helpful votes)
browser-act via Skill tool to load usage. If installation or configuration issues arise, follow its guidance to resolve then retry.This Skill's operational boundary = what the user can manually do in their browser. It only reads data already displayed to the user on the page. JS code is encapsulated in Python files under thescripts/directory, invoked viaeval "$(python scripts/xxx.py {params})". Use the bash tool for execution.
eval "$(python scripts/extract-reviews.py --max-reviews 20)"
--max-reviews: max reviews to return per page, default 20{
"count": 20,
"reviews": [
{
"reviewer": "John D.",
"rating": 5.0,
"date": "Reviewed in the United States on May 15, 2026",
"title": "Great product, exactly as described",
"body": "I've been using this for two weeks and it works perfectly...",
"verified": true,
"helpful_votes": 42
}
]
}
| Platform | Reviews URL pattern |
|---|---|
| Amazon | https://www.amazon.com/product-reviews/{ASIN}?sortBy=recent (most recent) or sortBy=helpful |
| Amazon (from product page) | Scroll to reviews section or click "See all reviews" link, wait stable |
| WooCommerce | Product page URL with #reviews anchor; reviews are inline on the page |
| Shopify | Reviews are typically inline on the product page |
| Generic | Navigate to product URL; reviews section is usually below product info |
eval "$(python scripts/extract-reviews.py --max-reviews 20)"
navigate {reviews_url_with_page} → wait stable → re-run extract-reviews.pycount returns 0, or no new reviews appear compared to prior page.pageNumber parameter in the reviews URL. Start from 1.eval "$(python ../ecommerce-listing/scripts/extract-listing-next-page.py)" to detect it, then navigate.has_next is false, or count is 0.result.count >= 1 AND reviews[0].body != null{working-directory}/browser-act-skill-forge-memories/ecommerce-scraper-ecommerce-reviews.memory.md{YYYY-MM-DD}: {what happened} → {conclusion}