agentsclimarketplace

Review reputation scraping

Skill thirdwatch-dev/scraping-skills/skills/review-reputation-scraping

Web scraping skills for Claude & coding agents — anti-bot bypass, build-vs-buy, and ready-made scrapers for jobs, e-commerce, reviews, social, leads, real estate, travel, food & SEO. npx skills add thirdwatch-dev/scraping-skills

Install
npx -y skills add thirdwatch-dev/scraping-skills --skill review-reputation-scraping

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use when scraping reviews, ratings, or reputation data — review text, star ratings, TrustScore, pros/cons, company replies. Covers Trustpilot, G2, Capterra, Yelp, Google Maps, and Shopify review widgets. Triggers on "scrape reviews", "ratings", "brand monitoring", "voice of customer", "VOC", "competitor reviews", "review mining", "review sentiment", "TrustScore".

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

3.8 KB, as published. Nobody here has run it

Review & Reputation Scraping

Routing for getting review and ratings data off the web: review text, star ratings, TrustScore, pros/cons, verification status, and company replies. Useful for brand monitoring, voice-of-customer (VOC) analysis, competitive intelligence, and review mining for product/marketing research.

The reality on review sites

Review platforms are some of the most anti-bot-heavy targets on the web — the data is valuable and they protect it. G2, Capterra, and Yelp sit behind DataDome and Cloudflare and usually need a stealth browser to scrape reliably; plain HTTP gets you a challenge page. Trustpilot is gentler (server-rendered with embedded JSON), and Google Maps exposes an internal endpoint. The fields that matter for almost any analysis are the same across sites: review text, star rating, date, reviewer, verification status, and the company's reply. Aggregate signals (overall rating, review count, TrustScore) come for free on most listing pages.

Maintaining your own scraper here means re-solving the anti-bot challenge every time the vendor rotates it. Use a maintained scraper unless you have a reason not to.

Ready-made scrapers

TargetScraperFromNotes
TrustpilotTrustpilot Reviews Scraper$0.005/resultfull review text, TrustScore, company replies, 25+ fields
G2G2 Software Reviews Scraper$0.008/resultsoftware ratings, pros/cons, pricing
CapterraCapterra Scraper$0.008/resultsoftware reviews, 800+ categories
YelpYelp Business Scraper$0.008/resultbusiness reviews, hours, contact, coords
Google MapsGoogle Maps Scraper$0.002/resultbusiness ratings + details by query/location
Shopify ReviewsShopify Reviews Scraper$0.002/resulttotal review count + avg rating across Judge.me/Yotpo/Loox/etc.

Each is billed pay-per-result (you pay per row returned, free tier included) and the anti-bot maintenance is handled for you.

Run one

Run a scraper from the command line — it returns review rows as JSON:

curl -X POST "https://api.apify.com/v2/acts/thirdwatch~trustpilot-reviews-scraper/run-sync-get-dataset-items?token=YOUR_APIFY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "companyDomain": "example.com",
    "maxReviews": 50
  }'

Get a free token at console.apify.com. Input fields differ per scraper — exact input fields are on each actor's Store page (linked in the table above).

Build your own

If no maintained scraper fits or you need a custom target:

  • web-scraping-playbook — the build-vs-buy decision and the cost-first technique ladder (HTTP → TLS spoof → stealth browser).
  • anti-bot-scraping — concrete bypasses for the DataDome / Cloudflare challenges these review sites use.
  • apify-actor-builder — package your scraper as a deployable, monetizable Apify Actor.

Maintained by Thirdwatch. 70+ ready-made scrapers on the Apify Store.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.