# Meesho Supplier / Competitor Analyzer (`axlymxp/meesho-supplier-competitor-analyzer`) Actor

Deep analysis of Meesho suppliers: all products, pricing analytics, rating distribution, bestsellers, and supplier reviews.

- **URL**: https://apify.com/axlymxp/meesho-supplier-competitor-analyzer.md
- **Developed by:** [axly](https://apify.com/axlymxp) (community)
- **Categories:** AI, Agents, E-commerce
- **Stats:** 1 total users, 0 monthly users, 20.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 Supplier / Competitor Analyzer

Deep-dive analysis of individual Meesho sellers — perfect for **competitor research**, **supplier evaluation**, and **market intelligence**. Powered by the reverse-engineered Meesho Android API.

### What You Get

For each supplier, the actor outputs:

| Output Type                               | Description                                                                                        |
| ----------------------------------------- | -------------------------------------------------------------------------------------------------- |
| **Products** (`type=product`)             | All scraped products with price, rating, category, images, variants, reviews                       |
| **Analytics** (`type=supplier_analytics`) | Avg price, avg discount, avg rating, price range, top categories, rating distribution, bestsellers |

### Input

| Field                    | Type    | Default | Description                                                           |
| ------------------------ | ------- | ------- | --------------------------------------------------------------------- |
| `supplier_id`            | integer | —       | Single Meesho Supplier ID (**required** unless `supplier_ids` is set) |
| `supplier_ids`           | array   | `[]`    | Analyze multiple suppliers in one run                                 |
| `max_products`           | integer | `200`   | Products to scrape per supplier (10–1000)                             |
| `include_reviews`        | boolean | `true`  | Fetch buyer reviews per product                                       |
| `reviews_per_product`    | integer | `5`     | Number of reviews per product                                         |
| `delay_between_requests` | integer | `700`   | Delay between API calls (ms)                                          |
| `proxy_url`              | string  | —       | Optional `http://user:pass@host:port` proxy                           |

#### Sample Inputs

**Single supplier analysis:**

```json
{
    "supplier_id": 34285,
    "max_products": 200,
    "include_reviews": true,
    "reviews_per_product": 5
}
````

**Competitor comparison (batch):**

```json
{
    "supplier_ids": [34285, 987654, 112233],
    "max_products": 100,
    "include_reviews": false,
    "delay_between_requests": 500
}
```

### Output Examples

#### Product item

```json
{
    "type": "product",
    "catalog_id": 131015550,
    "name": "Women Printed Rayon Saree",
    "price": 399,
    "original_price": 899,
    "discount": 55.6,
    "image_url": "https://images.meesho.com/...",
    "supplier_id": 34285,
    "supplier_name": "Singh saree",
    "supplier_rating": 4.2,
    "rating": 3.8,
    "reviews_count": 245,
    "category": "Sarees",
    "url": "https://www.meesho.com/product/131015550",
    "fetched_at": "2026-05-03T10:00:00+00:00",
    "reviews": [
        {
            "reviewer_name": "Priya S.",
            "rating": 4,
            "review_text": "Nice fabric, colour matched photo.",
            "date": "2026-04-15T08:30:00Z"
        }
    ]
}
```

#### Analytics item

```json
{
  "type": "supplier_analytics",
  "supplier_id": 34285,
  "supplier_name": "Singh saree",
  "total_products": 1240,
  "scraped_products": 200,
  "avg_price": 678.45,
  "avg_discount": 48.7,
  "avg_rating": 4.28,
  "total_reviews": 15420,
  "price_range": { "min": 199, "max": 2499 },
  "rating_distribution": { "1": 5, "2": 8, "3": 22, "4": 91, "5": 74 },
  "top_categories": ["Kurtis", "Sarees", "Dresses"],
  "category_breakdown": { "Kurtis": 92, "Sarees": 65, "Dresses": 43 },
  "bestsellers": [ ... ],
  "fetched_at": "2026-05-03T10:00:00+00:00"
}
```

The analytics are also saved to the key-value store under `SUPPLIER_{id}_ANALYTICS` for quick programmatic access.

### How to Find a Supplier ID

1. Open any product page on [meesho.com](https://www.meesho.com).
2. Click the seller name link to go to their profile.
3. The URL will contain the numeric supplier ID: `meesho.com/supplier/34285`.

### Use Cases

- **Dropshippers** — identify high-volume, well-rated suppliers for sourcing.
- **Competitor analysis** — benchmark a rival seller's pricing and product mix.
- **Market research** — find under-served categories with low competition.
- **Brand monitoring** — track specific suppliers' inventory changes over time.

### Technical Notes

- Uses Meesho's internal Android API (`prod.meeshoapi.com`).
- TLS fingerprint spoofed via `curl_cffi` (Chrome 120) to bypass Akamai Bot Manager.
- No Apify Proxy; direct connections only.
- Supports multi-supplier batch runs with shared rate limiting.

### License

Apache 2.0

# Actor input Schema

## `supplier_id` (type: `integer`):

Meesho Supplier ID (numeric). Required unless supplier\_ids is provided.

## `supplier_ids` (type: `array`):

Analyze multiple suppliers at once. Provide either this or supplier\_id.

## `supplier_name` (type: `string`):

Supplier display name used as search query for product discovery. If not provided, the actor auto-discovers it (adds a few extra requests).

## `max_products` (type: `integer`):

Maximum number of products to scrape per supplier.

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

Fetch buyer reviews for each product.

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

Number of buyer reviews to fetch per product (when include\_reviews is true).

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

Milliseconds to wait between API calls.

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

Optional HTTP/HTTPS proxy URL (e.g. http://user:pass@host:port). Apify Proxy is NOT used.

## Actor input object example

```json
{
  "supplier_ids": [],
  "max_products": 200,
  "include_reviews": true,
  "reviews_per_product": 5,
  "delay_between_requests": 700
}
```

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("axlymxp/meesho-supplier-competitor-analyzer").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 = {}

# Run the Actor and wait for it to finish
run = client.actor("axlymxp/meesho-supplier-competitor-analyzer").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 '{}' |
apify call axlymxp/meesho-supplier-competitor-analyzer --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Meesho Supplier / Competitor Analyzer",
        "description": "Deep analysis of Meesho suppliers: all products, pricing analytics, rating distribution, bestsellers, and supplier reviews.",
        "version": "1.0",
        "x-build-id": "K2zX66YwEFZlRXTxH"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/axlymxp~meesho-supplier-competitor-analyzer/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-axlymxp-meesho-supplier-competitor-analyzer",
                "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-supplier-competitor-analyzer/runs": {
            "post": {
                "operationId": "runs-sync-axlymxp-meesho-supplier-competitor-analyzer",
                "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-supplier-competitor-analyzer/run-sync": {
            "post": {
                "operationId": "run-sync-axlymxp-meesho-supplier-competitor-analyzer",
                "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": {
                    "supplier_id": {
                        "title": "Supplier ID",
                        "type": "integer",
                        "description": "Meesho Supplier ID (numeric). Required unless supplier_ids is provided."
                    },
                    "supplier_ids": {
                        "title": "Multiple Supplier IDs",
                        "type": "array",
                        "description": "Analyze multiple suppliers at once. Provide either this or supplier_id.",
                        "items": {
                            "type": "integer"
                        },
                        "default": []
                    },
                    "supplier_name": {
                        "title": "Supplier Name (optional)",
                        "type": "string",
                        "description": "Supplier display name used as search query for product discovery. If not provided, the actor auto-discovers it (adds a few extra requests)."
                    },
                    "max_products": {
                        "title": "Max Products per Supplier",
                        "minimum": 10,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Maximum number of products to scrape per supplier.",
                        "default": 200
                    },
                    "include_reviews": {
                        "title": "Include Sample Product Reviews",
                        "type": "boolean",
                        "description": "Fetch buyer reviews for each product.",
                        "default": true
                    },
                    "reviews_per_product": {
                        "title": "Reviews per Product",
                        "minimum": 1,
                        "maximum": 50,
                        "type": "integer",
                        "description": "Number of buyer reviews to fetch per product (when include_reviews is true).",
                        "default": 5
                    },
                    "delay_between_requests": {
                        "title": "Delay between Requests (ms)",
                        "minimum": 100,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Milliseconds to wait between API calls.",
                        "default": 700
                    },
                    "proxy_url": {
                        "title": "Proxy URL",
                        "type": "string",
                        "description": "Optional HTTP/HTTPS proxy URL (e.g. http://user:pass@host:port). Apify Proxy is NOT used."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
