Meesho Reviews Scraper avatar

Meesho Reviews Scraper

Pricing

from $1.99 / 1,000 results

Go to Apify Store
Meesho Reviews Scraper

Meesho Reviews Scraper

Extract detailed product reviews from Meesho.com, including star ratings, comments, customer review photos/videos, author profiles, and product aggregate ratings.

Pricing

from $1.99 / 1,000 results

Rating

0.0

(0)

Developer

ScrapeAI

ScrapeAI

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

8 days ago

Last modified

Share

Extract detailed product reviews, customer ratings, reviewer information, review photos/videos, and aggregate product rating distributions directly from Meesho.com.


Features

  • Direct URL & Product ID Support — Pass full Meesho product URLs (e.g., https://www.meesho.com/sarees/p/8wgm8d) or raw catalog IDs (e.g., 8wgm8d).
  • Rich Live Data Extraction — Scrapes star ratings, review comments, helpful votes count, timestamps, author names, and profile avatars.
  • Customer Media Attachments — Downloads all customer-uploaded review photos and videos with high-resolution image links.
  • Product Rating Intelligence — Extracts aggregate product rating, total rating count, review count, and full 1-to-5 star rating distribution.
  • Flexible Review Filtering — Choose between extracting all reviews or only reviews containing images and videos.
  • High-Performance Pagination — Utilizes Meesho's native cursor-based pagination for maximum reliability and zero missed reviews.
  • Cloud & Automation Ready — Runs seamlessly on Apify with automatic scheduling, dataset storage, and webhook integrations.

Use Cases

  • E-Commerce Market Research — Track customer sentiment and product reception on India's top social commerce marketplace.
  • Competitive Intelligence — Benchmark competitor ratings, common product complaints, and quality feedback.
  • Brand & Seller Monitoring — Monitor your own catalog reviews and track customer satisfaction trends.
  • AI & NLP Training Datasets — Build datasets for sentiment analysis, aspect-based review mining, and text classification models.
  • Visual Quality Analysis — Gather real customer photos to inspect product manufacturing and packaging quality.

Input Parameters

FieldTypeDefaultRequiredDescription
productUrlsarray["https://www.meesho.com/sarees/p/8wgm8d"]YesList of Meesho product page URLs or alphanumeric catalog IDs.
maxReviewsPerProductinteger50NoMaximum number of reviews to extract per product (1–1000).
reviewTypestring"all"NoFilter reviews by type: "all" (All reviews) or "media" (Only reviews with photos/videos).
proxyConfigurationobject{ "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"], "apifyProxyCountry": "IN" }NoProxy settings. Indian Residential Proxy is strongly recommended for bypassing Akamai anti-bot protection.

Sample Input

{
"productUrls": [
"https://www.meesho.com/sarees/p/8wgm8d"
],
"maxReviewsPerProduct": 20,
"reviewType": "all",
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"],
"apifyProxyCountry": "IN"
}
}

Output Dataset Schema

Each item saved to the dataset represents a single customer review with full product and reviewer metadata:

FieldTypeDescription
reviewIdstringUnique identifier of the review on Meesho.
productIdstringAlphanumeric product/catalog ID.
productTitlestringTitle and name of the product.
productUrlstringCanonical Meesho product URL.
productDescriptionstringFull product description and specifications.
productThumbnailUrlstringProduct thumbnail image URL.
productLargeImageUrlstringHigh-resolution product image URL.
ratingnumberStar rating given by the reviewer (1–5).
commentstringText comment and feedback submitted by the customer.
reviewerNamestringName or username of the reviewer.
reviewerProfileImagestringAvatar image URL of the reviewer (if available).
reviewerHelpfulVotesnumberTotal helpful votes received across all reviews by this reviewer.
helpfulCountnumberNumber of users who marked this specific review as helpful.
hasImagesbooleantrue if customer uploaded photos with their review.
hasVideosbooleantrue if customer uploaded videos with their review.
imageUrlsarray[string]List of customer-uploaded photo URLs.
videoUrlsarray[string]List of customer-uploaded video URLs.
mediaarray[object]Detailed media objects with ID, status, URL, and media type.
createdAtstringDate and time when the review was posted.
productAverageRatingnumberAggregate average star rating of the product (e.g., 3.7).
productRatingCountnumberTotal number of ratings received by the product.
productReviewCountnumberTotal number of written reviews submitted for the product.
ratingDistributionobjectBreakdown of star ratings count across 1 to 5 stars.
scrapedAtstringISO 8601 timestamp when this record was scraped.

Sample Output Record

{
"reviewId": "1667393901",
"productId": "8wgm8d",
"productTitle": "NEW RICH CHFFORN FENDY SOFT FABRIC RICH BORDER LOOK SAREE WITH BLOUSE",
"productUrl": "https://www.meesho.com/sarees/p/8wgm8d",
"productDescription": "Saree Fabric: Chiffon\nBlouse: Running Blouse\nBlouse Fabric: Chiffon\nPattern: Dyed/ Washed\nBlouse Pattern: Same as Saree\nNet Quantity (N): Single\nThis stunning gold and Rama green two-tone saree is a masterpiece of elegance and luxury...",
"productThumbnailUrl": "https://images.meesho.com/images/products/538252429/avryz_128.jpg",
"productLargeImageUrl": "https://images.meesho.com/images/products/538252429/avryz_512.jpg",
"rating": 4,
"comment": "Nice saree, fabric is very soft and lightweight.",
"reviewerName": "Kiran Shaw",
"reviewerProfileImage": null,
"reviewerHelpfulVotes": 3,
"helpfulCount": 3,
"hasImages": true,
"hasVideos": false,
"imageUrls": [
"https://images.meesho.com/images/ratings_reviews/8074431351/8114463601/8074431351_8114463601_84401946d71a8.jpeg"
],
"videoUrls": [],
"media": [
{
"id": 162531481,
"status": 1,
"url": "https://images.meesho.com/images/ratings_reviews/8074431351/8114463601/8074431351_8114463601_84401946d71a8.jpeg",
"type": "image"
}
],
"createdAt": "2026-05-16 19:59:36",
"productAverageRating": 3.7,
"productRatingCount": 107,
"productReviewCount": 28,
"ratingDistribution": {
"1": 14,
"2": 10,
"3": 13,
"4": 24,
"5": 46
},
"scrapedAt": "2026-08-24T12:00:00.000Z"
}

Important Notes & Best Practices

  • Residential Proxy Required: Meesho uses Akamai Bot Manager which heavily blocks datacenter IPs. Always use Apify Residential Proxy (India) when running this Actor.
  • Batch Scraping: You can pass multiple product URLs in productUrls. The scraper processes them sequentially with polite pacing between requests.
  • Media Only Extraction: Set reviewType: "media" if you only need customer reviews that include photo or video proof.