Flipkart Product Scraper avatar
Flipkart Product Scraper

Pricing

$10.00/month + usage

Go to Apify Store
Flipkart Product Scraper

Flipkart Product Scraper

This Apify actor automatically scrapes product listings from Flipkart based on your search term. It extracts structured product data with key fields (productId, title, price, mrp, rating, ratingCount, image, url) — perfect for product analysis and price comparison.

Pricing

$10.00/month + usage

Rating

5.0

(4)

Developer

ScrapeAI

ScrapeAI

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

23 days ago

Last modified

Share

🧠 Flipkart Product Scraper

This Apify actor automatically scrapes product listings from Flipkart based on your search term. It extracts structured product data with key fields (productId, title, price, mrp, rating, ratingCount, image, url) — perfect for product analysis and price comparison.

✅ Use Cases

📇 Generate product catalogs

💬 Build price comparison databases

🏙️ Conduct market research by category

🧭 Perform competitive analysis in your niche

📥 Input Configuration

You can customize the actor using the following input fields:

{
"search": "mobiles",
"maxItems": 50,
"maxConcurrency": 2,
"headless": true
}

🧾 Fields Explained Field Type Description search string Search term for Flipkart (e.g., "mobiles", "laptops") maxItems number Maximum number of products to extract maxConcurrency number Maximum concurrent requests headless boolean Run browser in headless mode 📤 Output

The actor returns a dataset containing an array of structured product listings. Each record includes key details about the product.

🧩 Sample Output

{
"productId": "MOBGXYZ123",
"title": "Samsung Galaxy F54",
"price": 24999,
"mrp": 29999,
"rating": 4.4,
"ratingCount": 18231,
"image": "https://rukminim2.flixcart.com/image/...",
"url": "https://www.flipkart.com/..."
}

📋 Output Fields Field Type Description productId string The unique ID of the product title string The name of the product price number The current price of the product mrp number The maximum retail price (MRP) rating number Average rating of the product ratingCount number Total number of ratings image string URL of the product image url string Direct URL to the product page 🔒 Proxy Configuration

This actor uses Apify Proxy automatically to:

Avoid IP-based rate limiting or bans

Ensure stable scraping at scale

Default proxy settings use:

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

🚀 How to Use

Open the actor in Apify Console

Click "Try actor" or create a new task

Enter your desired search term

Run the actor

Download your data in JSON, CSV, or Excel format

⚙️ Advanced Input Example

{
"search": "mobiles",
"maxItems": 100,
"maxConcurrency": 2,
"headless": true,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"],
"apifyProxyCountry": "IN"
}
}

🛠️ Tech Stack

🧩 Apify SDK — for actor and data handling

🕷️ Crawlee — for robust crawling and scraping

🌐 Puppeteer — for browser automation and rendering dynamic content

⚙️ Node.js — fast, scalable backend environment