# Scrape Flipkart product reviews

**Use case:** 

Scrape Flipkart buyer reviews with rating, text, certified-buyer flag, date and variant, plus product title and price. Export to CSV.

## Input

```json
{
  "searchTerms": [
    "smartphone"
  ],
  "sort": "relevance",
  "fourStarPlus": false,
  "maxProducts": 20,
  "maxPagesPerSearch": 10,
  "includeProductDetails": true,
  "includeReviews": true,
  "maxReviewsPerProduct": 50,
  "outputSellerLeads": false,
  "deduplicateProducts": true,
  "monitorMode": false,
  "monitorKey": "default",
  "maxConcurrency": 4,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "title": {
    "label": "Product",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "mrp": {
    "label": "MRP",
    "format": "number"
  },
  "discountPercent": {
    "label": "Discount %",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "ratingCount": {
    "label": "Ratings",
    "format": "number"
  },
  "inStock": {
    "label": "In stock",
    "format": "boolean"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "sellerName": {
    "label": "Seller",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Flipkart Scraper - Products, Prices, Specs & Reviews](https://apify.com/scrapesage/flipkart-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/flipkart-scraper) to learn more, explore other use cases, and run it yourself.