Flipkart Review Scraper avatar
Flipkart Review Scraper

Pricing

$1.00 / 1,000 businesses

Go to Apify Store
Flipkart Review Scraper

Flipkart Review Scraper

Flipkart Review Scraper is a tool that automatically extracts product reviews from Flipkart, including ratings, review text, reviewer name, date, and likes. It helps businesses and analysts monitor customer feedback, perform sentiment analysis, and gain insights without manual data collection.

Pricing

$1.00 / 1,000 businesses

Rating

5.0

(2)

Developer

ScrapeAI

ScrapeAI

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Share

πŸ›’ Flipkart Review Scraper - API Based

This Apify actor extracts product reviews with user details directly through the Flipkart API. Provide any Flipkart product URL to collect structured review data including author, rating, review text, location, certified buyer status, helpful votes, product attributes, and review images. Perfect for sentiment analysis, product research, and customer feedback analysis.

βœ… Use Cases

  • πŸ“Š Analyze customer sentiment and feedback
  • πŸ” Research product quality and issues
  • πŸ“ˆ Compare reviews across products
  • πŸ’¬ Build customer feedback databases
  • πŸ“‹ Generate review reports for market analysis

πŸ“₯ Input Configuration

You can customize the actor using the following input fields:

{
"productUrl": "https://www.flipkart.com/samsung-guru-music-2-b310ed/p/itmc77fb727f1cf5?pid=MOBHDFT9GTFDDXP6",
"maxPages": 10,
"sortOrder": "MOST_HELPFUL",
"minRating": 0,
"includeProductInfo": true
}

🧾 Fields Explained

FieldTypeDescription
productUrlstringFlipkart product URL to scrape reviews from
maxPagesnumberMaximum number of review pages to fetch (approx. 10 reviews per page)
sortOrderstringSort order: "MOST_HELPFUL", "MOST_RECENT", "POSITIVE_FIRST", "NEGATIVE_FIRST"
minRatingnumberMinimum star rating (0-5) to include reviews
includeProductInfobooleanInclude product information in the output

πŸ“€ Output

The actor returns a dataset containing structured review records. Each record includes comprehensive details about the review, suitable for sentiment analysis, research, and customer feedback analysis.

🧩 Sample Output - Review

{
"type": "review",
"id": "R1234567890",
"author": "John Doe",
"rating": 5,
"title": "Excellent product!",
"text": "This product exceeded my expectations. Great quality and fast delivery.",
"created": "2 months ago",
"certifiedBuyer": true,
"location": {
"city": "Mumbai",
"state": "Maharashtra"
},
"helpfulCount": 42,
"upvotes": 38,
"downvotes": 4,
"productAttributes": [
{"name": "Color", "value": "Black"},
{"name": "Storage", "value": "128 GB"}
],
"images": [
"https://rukminim2.flixcart.com/image/review/..."
],
"reviewUrl": "/review/R1234567890"
}

🧩 Sample Output - Product Info

{
"type": "product_info",
"id": "MOBHDFT9GTFDDXP6",
"title": "Samsung Guru Music 2",
"superTitle": "Samsung",
"subtitle": "Feature Phone",
"rating": {
"average": 4.1,
"count": 50234,
"reviewCount": 3421
},
"pricing": {
"finalPrice": 1999,
"mrp": 2500,
"discount": 20
},
"availability": "In Stock",
"keySpecs": ["Dual SIM", "FM Radio", "MP3 Player"],
"images": ["https://rukminim2.flixcart.com/image/416/416/..."]
}

πŸ“‹ Review Output Fields

FieldTypeDescription
typestringRecord type ("review" or "product_info")
idstringUnique review identifier
authorstringReview author name
ratingnumberReview rating (1-5 stars)
titlestringReview title
textstringFull review text content
createdstringWhen the review was posted
certifiedBuyerbooleanWhether the reviewer is a verified buyer
locationobjectReviewer's city and state
helpfulCountintegerNumber of helpful votes
upvotesintegerNumber of upvotes
downvotesintegerNumber of downvotes
productAttributesarrayProduct variant info (color, size, etc.)
imagesarrayReview image URLs
reviewUrlstringURL to the review page

πŸ” Data Source

  • βœ“ Data fetched exclusively via Flipkart API (HTTP POST requests)
  • βœ“ No HTML scraping or DOM parsing
  • βœ“ Real-time review information directly from Flipkart
  • βœ“ Automatic filtering and deduplication

πŸ”’ Proxy Configuration

This actor uses standard HTTP headers with optional proxy support for:

  • Avoiding IP-based rate limiting or bans
  • Accessing location-specific data
  • Ensuring stable data retrieval at scale

Configure proxy settings in Apify:

{
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"],
"apifyProxyCountry": "IN"
}

πŸš€ How to Use

  1. Open the actor in Apify Console
  2. Click "Try actor" or create a new task
  3. Enter the Flipkart product URL
  4. Configure optional settings (max pages, sort order, min rating)
  5. Run the actor
  6. Download results in JSON, CSV, or Excel format

βš™οΈ Advanced Input Example

{
"productUrl": "https://www.flipkart.com/apple-iphone-15-blue-128-gb/p/itm6ac6485515ae4?pid=MOBGTAGPNRHX7K3H",
"maxPages": 50,
"sortOrder": "MOST_RECENT",
"minRating": 3,
"includeProductInfo": true
}

πŸ› οΈ Tech Stack

  • Apify SDK β€” actor orchestration and data handling
  • Node.js 18+ β€” runtime environment
  • node-fetch β€” HTTP client for API requests
  • Flipkart API β€” exclusive data source for review information

πŸ“Š Data Processing Features

  • βœ“ Automatic duplicate detection using Review IDs
  • βœ“ Filtering by minimum rating
  • βœ“ Structured data parsing and normalization
  • βœ“ Comprehensive logging and error handling
  • βœ“ Schema validation for all output records
  • βœ“ Pagination support for fetching all reviews

πŸ”§ Local Development

Installation

$npm install

Running the Actor

$npm start

Code Quality

Format code:

$npm run format

Check linting:

$npm run lint

πŸ“‚ Project Structure

.
β”œβ”€β”€ .actor/ # Actor configuration
β”‚ β”œβ”€β”€ actor.json # Actor metadata
β”‚ β”œβ”€β”€ input_schema.json # Input parameters schema
β”‚ β”œβ”€β”€ dataset_schema.json # Output dataset schema
β”‚ β”œβ”€β”€ input.json # Default input
β”‚ β”œβ”€β”€ input-local.json # Local development input
β”‚ └── input-production.json # Production input
β”œβ”€β”€ src/
β”‚ └── main.js # Main actor script
β”œβ”€β”€ storage/
β”‚ └── datasets/default/ # Generated datasets
β”œβ”€β”€ package.json # Dependencies
└── README.md # This file

🀝 Support

For issues, questions, or feature requests, please refer to the Apify documentation or contact support.