Meesho Product Scraper avatar

Meesho Product Scraper

Pricing

from $3.00 / 1,000 results

Go to Apify Store
Meesho Product Scraper

Meesho Product Scraper

Scrape products, prices, MRP, discounts, specs, high-res images, ratings, and sellers from Meesho.

Pricing

from $3.00 / 1,000 results

Rating

0.0

(0)

Developer

datablow

datablow

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Categories

Share

Meesho Product Scraper (Camoufox Stealth)

A production-grade, anti-bot resilient Meesho Product Scraper Apify Actor built with Crawlee + Playwright + Camoufox (stealth C++ Firefox fork).

It extracts full product information, current prices, original MRP, discount percentages, ratings, reviews count, full technical specifications/attributes (fabric, pattern, etc.), all gallery photos, seller details ("Sold By" name, rating, followers), and size options from Meesho.


⚡ Features

  • 🔍 Keyword Search & Direct URLs: Scrape by search terms (e.g., saree, kurti, smart watch) or direct product URLs.
  • 💰 Complete Pricing: Extract current selling price, original MRP, and auto-computed discount percentages.
  • 📋 Technical Specifications: Captures all key-value attributes (Fabric, Pattern, Sleeve Length, Net Quantity, Country of Origin, etc.).
  • 🖼️ High-Resolution Images: Extracts all product photos from the gallery.
  • 🏪 Seller Insights: Captures seller name, ratings, follower count, and total catalog products.
  • Ratings & Reviews: Retrieves star ratings, total ratings count, and total reviews count.
  • 🔄 Infinite Scroll Support: Automatically handles dynamic infinite scrolling on Meesho catalog pages.
  • 🛡️ Camoufox Stealth: Bypasses Akamai and bot detection via C++ fingerprint spoofing on Apify Cloud.

📥 Input Parameters

FieldTypeDefaultDescription
searchTermsArray of strings["saree"]Keywords to search on Meesho.
startUrlsArray of objects/strings[]Direct search or product URLs.
maxItemsInteger20Maximum number of products to scrape.
maxPagesPerQueryInteger3Maximum scroll batches per search query.
scrapeProductDetailsBooleantrueExtract full specifications, gallery photos, and seller data.
proxyConfigurationObject{}Apify Proxy configuration (Residential recommended for high volume).

Sample Input (JSON)

{
"searchTerms": ["kurti set", "designer saree"],
"maxItems": 20,
"maxPagesPerQuery": 3,
"scrapeProductDetails": true
}

📤 Output Sample (JSON)

{
"productId": "gl1pep",
"title": "Meesho Bestseller 3 Pc Kurti Set Printed V-Neck Cotton Tops Daily Casual Wear Combo",
"url": "https://www.meesho.com/meesho-bestseller-3-pc-kurti-set-printed-v-neck-cotton-tops-daily-casual-wear-combo/p/gl1pep",
"currentPrice": 299,
"originalPrice": 599,
"discountPercent": 50,
"currency": "INR",
"rating": 4.1,
"ratingCount": 1420,
"reviewCount": 380,
"thumbnail": "https://images.meesho.com/images/products/gl1pep/1_512.jpg",
"images": [
"https://images.meesho.com/images/products/gl1pep/1_512.jpg",
"https://images.meesho.com/images/products/gl1pep/2_512.jpg",
"https://images.meesho.com/images/products/gl1pep/3_512.jpg"
],
"specifications": {
"Fabric": "Cotton",
"Sleeve Length": "Three-Quarter Sleeves",
"Pattern": "Printed",
"Combo of": "Combo of 3",
"Net Quantity (N)": "1",
"Country of Origin": "India"
},
"seller": {
"name": "Ethnic Trends Pvt Ltd",
"rating": 3.9,
"followers": "4.5k",
"productsCount": "120"
},
"sizes": ["S", "M", "L", "XL", "XXL"],
"inStock": true,
"scrapedAt": "2026-09-11T15:50:00.000Z"
}

🚀 How to Run

Via Apify Web Console

  1. Open the Actor in your Apify Console.
  2. Enter your searchTerms or startUrls.
  3. Click Start.

Via Python

from apify_client import ApifyClient
client = ApifyClient("<YOUR_APIFY_TOKEN>")
run_input = {
"searchTerms": ["kurti combo"],
"maxItems": 10,
"scrapeProductDetails": True
}
run = client.actor("datablow/meesho-scraper").call(run_input=run_input)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item["title"], item["currentPrice"])