# Scrape Flipkart Mobile Reviews for Sentiment Analysis

**Use case:** 

Extract product reviews for top-selling mobile phones on Flipkart to understand customer sentiment and identify common pain points or praised features. This dat

## Input

```json
{
  "mode": "search",
  "searchQuery": "laptop",
  "startUrls": [
    {
      "url": "https://www.flipkart.com/apple-iphone-15-black-128-gb/p/itm65306312a0f2b?pid=MOBGZ7DGQWMYQGE9"
    },
    {
      "url": "https://www.flipkart.com/samsung-galaxy-s24-ultra-5g-titanium-gray-256-gb/p/itme9822a104033b?pid=MOBGZS2PHZGP97HA"
    }
  ],
  "sortBy": "relevance",
  "maxItems": 20
}
```

## Output

```json
{
  "title": {
    "label": "Title"
  },
  "price": {
    "label": "Price"
  },
  "originalPrice": {
    "label": "Original price"
  },
  "discountPercent": {
    "label": "Discount percent"
  },
  "rating": {
    "label": "Rating"
  },
  "reviewCount": {
    "label": "Review count"
  },
  "brand": {
    "label": "Brand"
  },
  "url": {
    "label": "Url"
  }
}
```

## About this Actor

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