# Meesho Product Scraper (`datablow/meesho-scraper`) Actor

Scrape products, prices, MRP, discounts, specs, high-res images, ratings, and sellers from Meesho.

- **URL**: https://apify.com/datablow/meesho-scraper.md
- **Developed by:** [datablow](https://apify.com/datablow) (community)
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Meesho Product Scraper (Camoufox Stealth)

A production-grade, anti-bot resilient **Meesho Product Scraper** Apify Actor built with **Crawlee + Playwright + Camoufox** (stealth C++ Firefox fork).

It extracts full product information, current prices, original MRP, discount percentages, ratings, reviews count, full technical specifications/attributes (fabric, pattern, etc.), all gallery photos, seller details (*"Sold By"* name, rating, followers), and size options from [Meesho](https://www.meesho.com).

***

### ⚡ Features

- 🔍 **Keyword Search & Direct URLs**: Scrape by search terms (e.g., `saree`, `kurti`, `smart watch`) or direct product URLs.
- 💰 **Complete Pricing**: Extract current selling price, original MRP, and auto-computed discount percentages.
- 📋 **Technical Specifications**: Captures all key-value attributes (Fabric, Pattern, Sleeve Length, Net Quantity, Country of Origin, etc.).
- 🖼️ **High-Resolution Images**: Extracts all product photos from the gallery.
- 🏪 **Seller Insights**: Captures seller name, ratings, follower count, and total catalog products.
- ⭐ **Ratings & Reviews**: Retrieves star ratings, total ratings count, and total reviews count.
- 🔄 **Infinite Scroll Support**: Automatically handles dynamic infinite scrolling on Meesho catalog pages.
- 🛡️ **Camoufox Stealth**: Bypasses Akamai and bot detection via C++ fingerprint spoofing on Apify Cloud.

***

### 📥 Input Parameters

| Field | Type | Default | Description |
| :--- | :--- | :--- | :--- |
| `searchTerms` | Array of strings | `["saree"]` | Keywords to search on Meesho. |
| `startUrls` | Array of objects/strings | `[]` | Direct search or product URLs. |
| `maxItems` | Integer | `20` | Maximum number of products to scrape. |
| `maxPagesPerQuery` | Integer | `3` | Maximum scroll batches per search query. |
| `scrapeProductDetails` | Boolean | `true` | Extract full specifications, gallery photos, and seller data. |
| `proxyConfiguration` | Object | `{}` | Apify Proxy configuration (Residential recommended for high volume). |

#### Sample Input (JSON)

```json
{
  "searchTerms": ["kurti set", "designer saree"],
  "maxItems": 20,
  "maxPagesPerQuery": 3,
  "scrapeProductDetails": true
}
```

***

### 📤 Output Sample (JSON)

```json
{
  "productId": "gl1pep",
  "title": "Meesho Bestseller 3 Pc Kurti Set Printed V-Neck Cotton Tops Daily Casual Wear Combo",
  "url": "https://www.meesho.com/meesho-bestseller-3-pc-kurti-set-printed-v-neck-cotton-tops-daily-casual-wear-combo/p/gl1pep",
  "currentPrice": 299,
  "originalPrice": 599,
  "discountPercent": 50,
  "currency": "INR",
  "rating": 4.1,
  "ratingCount": 1420,
  "reviewCount": 380,
  "thumbnail": "https://images.meesho.com/images/products/gl1pep/1_512.jpg",
  "images": [
    "https://images.meesho.com/images/products/gl1pep/1_512.jpg",
    "https://images.meesho.com/images/products/gl1pep/2_512.jpg",
    "https://images.meesho.com/images/products/gl1pep/3_512.jpg"
  ],
  "specifications": {
    "Fabric": "Cotton",
    "Sleeve Length": "Three-Quarter Sleeves",
    "Pattern": "Printed",
    "Combo of": "Combo of 3",
    "Net Quantity (N)": "1",
    "Country of Origin": "India"
  },
  "seller": {
    "name": "Ethnic Trends Pvt Ltd",
    "rating": 3.9,
    "followers": "4.5k",
    "productsCount": "120"
  },
  "sizes": ["S", "M", "L", "XL", "XXL"],
  "inStock": true,
  "scrapedAt": "2026-09-11T15:50:00.000Z"
}
```

***

### 🚀 How to Run

#### Via Apify Web Console

1. Open the Actor in your Apify Console.
2. Enter your `searchTerms` or `startUrls`.
3. Click **Start**.

#### Via Python

```python
from apify_client import ApifyClient

client = ApifyClient("<YOUR_APIFY_TOKEN>")
run_input = {
    "searchTerms": ["kurti combo"],
    "maxItems": 10,
    "scrapeProductDetails": True
}
run = client.actor("datablow/meesho-scraper").call(run_input=run_input)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item["title"], item["currentPrice"])
```

# Actor input Schema

## `searchTerms` (type: `array`):

List of keywords to search on Meesho (e.g., 'saree', 'kurti', 'smart watch').

## `startUrls` (type: `array`):

Direct Meesho URLs (Search results or Product detail pages).

## `maxItems` (type: `integer`):

Maximum number of products to scrape across all queries/URLs.

## `maxPagesPerQuery` (type: `integer`):

Maximum number of scroll pages to load per search keyword.

## `scrapeProductDetails` (type: `boolean`):

If enabled, visits each product page to extract full specifications, key-value attributes, all gallery photos, and seller details.

## `proxyConfiguration` (type: `object`):

Proxy settings. Using Apify Residential or Datacenter proxies is recommended for high volume scraping.

## Actor input object example

```json
{
  "searchTerms": [
    "saree"
  ],
  "startUrls": [],
  "maxItems": 20,
  "maxPagesPerQuery": 3,
  "scrapeProductDetails": true
}
```

# Actor output Schema

## `dataset` (type: `string`):

Default dataset containing the scraped Meesho products.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "searchTerms": [
        "saree"
    ],
    "startUrls": []
};

// Run the Actor and wait for it to finish
const run = await client.actor("datablow/meesho-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "searchTerms": ["saree"],
    "startUrls": [],
}

# Run the Actor and wait for it to finish
run = client.actor("datablow/meesho-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "searchTerms": [
    "saree"
  ],
  "startUrls": []
}' |
apify call datablow/meesho-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,datablow/meesho-scraper"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/xyXhCJ8iu1icmTZc2/builds/QOmHKP1M24XieqQki/openapi.json
