# Scrape Flipkart Search Results & Prices

**Use case:** 

Extract every Flipkart product for a search — title, price, MRP, discount, rating, and reviews. Auto-paginates through all result pages.

## Input

```json
{
  "searchUrls": [
    {
      "url": "https://www.flipkart.com/search?q=ghar+soaps"
    }
  ],
  "maxItemsPerStartUrl": 500,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "IN"
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "productId": {
    "label": "Product ID",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "originalPrice": {
    "label": "MRP",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "discountPercent": {
    "label": "Discount %",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "ratingCount": {
    "label": "Ratings",
    "format": "number"
  },
  "productUrl": {
    "label": "URL",
    "format": "link"
  },
  "image": {
    "label": "Image",
    "format": "image"
  }
}
```

## About this Actor

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