# Meesho Product Detail + Reviews Scraper (`axlymxp/meesho-product-detail-reviews`) Actor

Fetch deep product details and customer reviews from Meesho using APIs.

- **URL**: https://apify.com/axlymxp/meesho-product-detail-reviews.md
- **Developed by:** [axly](https://apify.com/axlymxp) (community)
- **Categories:** AI, Agents, E-commerce
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.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/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use 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 Detail + Reviews Scraper

Fetch rich, deep product data from [Meesho](https://www.meesho.com) — including full descriptions, price/discount info, size/colour variants, supplier details, and customer reviews — using Meesho's reverse-engineered internal Android API.

### Features

- **Bulk catalog ID input** — pass a list of catalog IDs to scrape directly
- **Search → detail pipeline** — provide a keyword; the actor searches then fetches full details for every result
- **Full PDP data** — description, images, variants, supplier, pricing
- **Customer reviews** — configurable number of reviews per product
- **Variant extraction** — size, colour, SKU, per-variant price and stock
- **Graceful error handling** — failed individual products are skipped with a warning; the run continues

### Input

| Field                    | Type      | Default | Description                                   |
| ------------------------ | --------- | ------- | --------------------------------------------- |
| `catalog_ids`            | integer[] | `[]`    | List of catalog IDs to scrape                 |
| `query`                  | string    | —       | Search keyword; results are scraped in detail |
| `max_items`              | integer   | `20`    | Max total products to process                 |
| `include_reviews`        | boolean   | `true`  | Fetch customer reviews                        |
| `reviews_per_product`    | integer   | `10`    | Max reviews per product                       |
| `include_variants`       | boolean   | `true`  | Include size/colour variants                  |
| `delay_between_requests` | integer   | `600`   | Delay between API calls (ms)                  |
| `proxy_url`              | string    | —       | Optional HTTP/HTTPS proxy URL                 |

> At least one of `catalog_ids` or `query` must be provided.

#### Sample Input — by catalog IDs

```json
{
    "catalog_ids": [131015550, 227202371],
    "include_reviews": true,
    "reviews_per_product": 10,
    "include_variants": true
}
````

#### Sample Input — by search query

```json
{
    "query": "cotton kurti",
    "max_items": 10,
    "include_reviews": true
}
```

### Output

Each dataset item contains one full product record:

```json
{
    "catalog_id": 131015550,
    "name": "Women Embroidery Cotton Kurti",
    "description": "Premium quality cotton kurti with...",
    "price": 699,
    "original_price": 1499,
    "discount": 53.37,
    "final_price": 699,
    "images": ["https://images.meesho.com/..."],
    "supplier_id": 987654,
    "supplier_name": "Trendy Fashion Hub",
    "rating": 4.3,
    "reviews_count": 1240,
    "category": "Kurtis & Kurtas",
    "url": "https://www.meesho.com/product/131015550",
    "variants": [
        {
            "variant_id": 1,
            "size": "S",
            "color": "Blue",
            "price": 699,
            "original_price": 1499,
            "stock": 10
        }
    ],
    "fetched_at": "2026-05-03T10:00:00+00:00",
    "reviews": [
        {
            "reviewer_name": "Priya Sharma",
            "rating": 5,
            "review_text": "Excellent quality and fitting...",
            "date": "2026-04-20",
            "images": []
        }
    ]
}
```

### Tips

- Get catalog IDs by running the **Meesho Search & Category Scraper** actor first.
- Increase `delay_between_requests` to 1000–2000 ms for large batches to avoid rate limiting.
- Set `include_reviews: false` and `include_variants: false` for fastest throughput.

### Technical Notes

- Uses the Meesho Android API (`prod.meeshoapi.com`) with a static API key embedded in the app.
- TLS fingerprint is spoofed via `curl_cffi` (Chrome 120 profile) to bypass Akamai Bot Manager.
- Falls back to the static (`3.0/product/static`) endpoint if the dynamic PDP call fails.
- No Apify Proxy is used; connections are direct by default.

### License

Apache 2.0

# Actor input Schema

## `catalog_ids` (type: `array`):

List of Meesho catalog IDs to scrape (e.g. \[12345678, 87654321]). Either this or 'query' must be provided.

## `query` (type: `string`):

If provided, the actor first searches Meesho and then fetches full details for the results. Combined with any explicit catalog\_ids.

## `max_items` (type: `integer`):

Total maximum number of products to scrape across all sources.

## `include_reviews` (type: `boolean`):

Fetch customer reviews for each product.

## `reviews_per_product` (type: `integer`):

Maximum number of reviews to fetch per product.

## `include_variants` (type: `boolean`):

Include size/colour variant information in each product record.

## `delay_between_requests` (type: `integer`):

Polite delay between API calls in milliseconds.

## `proxy_url` (type: `string`):

Optional HTTP/HTTPS proxy URL, e.g. http://user:pass@host:port. Apify Proxy is never used automatically.

## Actor input object example

```json
{
  "catalog_ids": [
    131015550
  ],
  "max_items": 20,
  "include_reviews": true,
  "reviews_per_product": 10,
  "include_variants": true,
  "delay_between_requests": 600
}
```

# 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 = {
    "catalog_ids": [
        131015550
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("axlymxp/meesho-product-detail-reviews").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 = { "catalog_ids": [131015550] }

# Run the Actor and wait for it to finish
run = client.actor("axlymxp/meesho-product-detail-reviews").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "catalog_ids": [
    131015550
  ]
}' |
apify call axlymxp/meesho-product-detail-reviews --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=axlymxp/meesho-product-detail-reviews",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Meesho Product Detail + Reviews Scraper",
        "description": "Fetch deep product details and customer reviews from Meesho using APIs.",
        "version": "1.0",
        "x-build-id": "ASXWJfJ9deNSvHqcK"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/axlymxp~meesho-product-detail-reviews/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-axlymxp-meesho-product-detail-reviews",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/axlymxp~meesho-product-detail-reviews/runs": {
            "post": {
                "operationId": "runs-sync-axlymxp-meesho-product-detail-reviews",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/axlymxp~meesho-product-detail-reviews/run-sync": {
            "post": {
                "operationId": "run-sync-axlymxp-meesho-product-detail-reviews",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "catalog_ids": {
                        "title": "Catalog IDs",
                        "type": "array",
                        "description": "List of Meesho catalog IDs to scrape (e.g. [12345678, 87654321]). Either this or 'query' must be provided."
                    },
                    "query": {
                        "title": "Search Query (Optional)",
                        "type": "string",
                        "description": "If provided, the actor first searches Meesho and then fetches full details for the results. Combined with any explicit catalog_ids."
                    },
                    "max_items": {
                        "title": "Maximum items to process",
                        "minimum": 1,
                        "maximum": 200,
                        "type": "integer",
                        "description": "Total maximum number of products to scrape across all sources.",
                        "default": 20
                    },
                    "include_reviews": {
                        "title": "Include Reviews",
                        "type": "boolean",
                        "description": "Fetch customer reviews for each product.",
                        "default": true
                    },
                    "reviews_per_product": {
                        "title": "Max Reviews per Product",
                        "minimum": 1,
                        "maximum": 50,
                        "type": "integer",
                        "description": "Maximum number of reviews to fetch per product.",
                        "default": 10
                    },
                    "include_variants": {
                        "title": "Include Product Variants",
                        "type": "boolean",
                        "description": "Include size/colour variant information in each product record.",
                        "default": true
                    },
                    "delay_between_requests": {
                        "title": "Delay between requests (ms)",
                        "minimum": 0,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Polite delay between API calls in milliseconds.",
                        "default": 600
                    },
                    "proxy_url": {
                        "title": "Proxy URL (optional)",
                        "type": "string",
                        "description": "Optional HTTP/HTTPS proxy URL, e.g. http://user:pass@host:port. Apify Proxy is never used automatically."
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
