Flipkart Reviews Scraper avatar

Flipkart Reviews Scraper

Pricing

from $1.50 / 1,000 reviews

Go to Apify Store
Flipkart Reviews Scraper

Flipkart Reviews Scraper

Scrape Flipkart reviews & ratings in seconds. Flipkart product review scraper with star-wise rating count, total ratings, total reviews, review text, helpful votes & verified buyer data. Best for eCommerce research & sentiment analysis.

Pricing

from $1.50 / 1,000 reviews

Rating

0.0

(0)

Developer

Wibuild

Wibuild

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Share

Flipkart Reviews Scraper Actor

The Flipkart Reviews Scraper Actor collects Flipkart product reviews into clean, analysis-ready JSON.

Provide a Flipkart product URL (or reviews URL) and how many reviews you want.
The actor returns structured review rows you can export to CSV/Excel or plug into analysis pipelines.


What this actor does

Given a Flipkart product / reviews link, the actor:

  1. Collects customer reviews (newest first) up to your maxreviews limit
  2. Standardizes each review into a consistent schema
  3. Extracts product metadata (product_name, product_id, listing_id)
  4. Extracts product variant text when available (e.g. Quantity: 80 ml)
  5. Deduplicates reviews by review_id

Inputs

1. URL (required)

Flipkart product URL or review URL, for example:

  • Product page: https://www.flipkart.com/.../p/itm...?pid=...&lid=...
  • Reviews page: https://www.flipkart.com/.../product-reviews/itm...?pid=...&lid=...

pid in the URL is required.

2. maxreviews (required)

Maximum number of reviews to collect (minimum 1).


Output

Each dataset item is one review with these fields:

FieldDescription
product_nameProduct title
product_idFlipkart product id (pid)
listing_idFlipkart listing id (lid)
review_idUnique review id
product_variantVariant text (e.g. Quantity: 80 ml)
review_dateApproximate date (YYYY-MM-DD) derived from Flipkart relative text
review_titleReview title
review_ratingStar rating (1–5)
review_textFull review text
photo_urlsComma-separated photo URLs (if any)
video_urlsComma-separated video URLs (if any)
customer_nameReviewer name
helpfulHelpful vote count
not_helpfulNot-helpful vote count
verified_purchaseWhether review is from a verified/certified buyer

Example:

{
"product_name": "DENVER Hamilton EDP- ...",
"product_id": "PERGT2RWAXHBU6N6",
"listing_id": "LSTPERGT2RWAXHBU6N64AE3BS",
"review_id": "a5f6947e-e8ff-4cde-af1c-56555ca32624",
"product_variant": "Quantity: 80 ml",
"review_date": "2026-08-09",
"review_title": "Worth the money",
"review_rating": 4,
"review_text": "Best",
"photo_urls": null,
"video_urls": null,
"customer_name": "Yogesh Kapadiya",
"helpful": 0,
"not_helpful": 0,
"verified_purchase": true
}

Notes

  • Flipkart does not expose exact review timestamps; review_date is approximated from relative text like Today / 3 days ago.
  • Flipkart may stop returning deeper pages on very large review sets (a platform-side listing limit).