agentsclimarketplace

Ecommerce product scraping

Skill thirdwatch-dev/scraping-skills/skills/ecommerce-product-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 ecommerce-product-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 you need to scrape e-commerce product data — titles, brands, prices, MRP/list price, discounts, ratings, variants/sizes, availability, images, and product URLs — from online storefronts and marketplaces. Covers Amazon, Flipkart, AliExpress, Myntra, Nykaa, Meesho, Snapdeal, Noon, AJIO, FirstCry, Tata Cliq, and any Shopify store. For price monitoring / MAP enforcement, catalog building, competitor price tracking, and dropshipping product research. Triggers on "scrape products", "price monitoring", "product catalog", "competitor prices", "MAP", "track prices", "build a product database", "compare prices across stores".

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

4.8 KB, as published. Nobody here has run it

E-commerce Product Scraping

Routes product-data tasks to the right scraper or build path. The goal is structured product rows — title, brand, price, MRP/list price, discount, rating, variants, image, URL — at the lowest cost per result.

How storefronts expose product data

Most e-commerce sites embed full product JSON in the page, so you rarely need to parse HTML:

  • SSR / embedded JSON__NEXT_DATA__ (Next.js), __NUXT__, window.__INITIAL_STATE__, or site-specific blobs (Myntra's __myx). Full structured catalog with no DOM parsing.
  • Internal search/PDP APIs — open DevTools → Network → XHR while browsing; listings and product pages almost always fetch JSON you can call directly. Find the endpoint the page calls for itself rather than parsing HTML.
  • Stealth-browser-only — a few storefronts sit behind Akamai or DataDome (Nykaa, Meesho, Tata Cliq) and serve a skeleton to HTTP clients. These need a hardened browser; intercept the XHR or walk product anchors rather than fighting hashed CSS-module class names.

Key fields to capture: title, brand, price, mrp/list price, discount, rating, variants/sizes, availability, image, url. MRP + discount together are what make a row useful for price/MAP monitoring.

Ready-made scrapers

Skip the anti-bot fight — these are maintained and billed pay-per-result.

TargetScraperFromNotes
AmazonAmazon Products$0.002/result18+ country domains, ASIN/price/rating
FlipkartFlipkart Products$0.003/resultIndia, price/rating/seller
AliExpressAliExpress Products$0.003/resultprice/sales count/ratings
MyntraMyntra$0.002/resultIndia fashion, sizes + variants
NykaaNykaa$0.005/resultIndia beauty
MeeshoMeesho$0.005/resultIndia social commerce
SnapdealSnapdeal$0.002/resultIndia marketplace
Noon.comNoon$0.002/resultUAE/KSA/Egypt
AJIOAJIO$0.002/resultIndia fashion
FirstCryFirstCry$0.002/resultIndia baby/kids
Tata CliqTata Cliq$0.005/resultIndia marketplace
Shopify StoreShopify Store Products$0.001/resultany Shopify store, full variants/SKU/price
Shopify ReviewsShopify Reviews$0.002/resultreview count + rating across widgets

Run one

Each scraper takes a JSON input and returns product rows. Run synchronously from the CLI:

curl -X POST "https://api.apify.com/v2/acts/thirdwatch~amazon-product-scraper/run-sync-get-dataset-items?token=YOUR_APIFY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "queries": ["wireless earbuds"],
    "maxResults": 25
  }'

Get a free token at console.apify.com. Exact input fields are on each actor's Store page — input keys differ per site (search term vs. category URL vs. product URL).

Build your own

No scraper for your target, or you need to own it? Start with the engineering skills in this collection:

  • 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 Akamai, DataDome, Cloudflare, PerimeterX (the protections in front of Nykaa, Meesho, Tata Cliq).
  • apify-actor-builder — package it 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.