Meesho Pro Scraper — All-in-One
Pricing
from $4.50 / 1,000 results
Go to Apify Store
Meesho Pro Scraper — All-in-One
Under maintenanceUnified Meesho scraper: search, category browse, product detail, supplier analysis, and bulk exports in a single actor.
Pricing
from $4.50 / 1,000 results
Rating
0.0
(0)
Developer
axly
Maintained by Community
Actor stats
0
Bookmarked
2
Total users
1
Monthly active users
3 days ago
Last modified
Categories
Share
Extract products, prices, reviews, and supplier data from Meesho using the official Android API.
Supports 7 scraping modes in a single actor.
Modes
| Mode | Description | Required Input |
|---|---|---|
search | Keyword search, paginated | query |
category | Browse a category, paginated | category_id |
product_detail | Deep PDP + variants + reviews | catalog_ids or query |
supplier | All products from one or more suppliers | supplier_id / supplier_ids |
bulk_search | Large-scale keyword search with dedup | query, max_items |
bulk_category | Large-scale category export with dedup | category_id, max_items |
fetch_categories | Full navigation tree (all leaf categories) | (none) |
Input Schema
{"mode": "search","query": "silk saree","limit": 20,"max_pages": 5,"include_reviews": true,"reviews_per_product": 8,"include_variants": true,"include_analytics": true,"sort_option": "POPULARITY","delay_between_requests": 500}
All fields
| Field | Type | Default | Description |
|---|---|---|---|
mode | enum | search | Scraping mode (see table above) |
query | string | — | Search keyword |
category_id | integer | — | Category leaf ID from fetch_categories |
catalog_ids | integer[] | [] | Explicit product IDs for product_detail mode |
supplier_id | integer | — | Single supplier ID |
supplier_ids | integer[] | [] | Multiple supplier IDs |
supplier_name | string | — | Optional name hint (speeds up discovery) |
limit | integer | 20 | Items per page (1–50) |
max_pages | integer | 10 | Page cap for search/category modes |
max_items | integer | 500 | Hard cap for bulk/supplier modes |
include_reviews | boolean | true | Attach reviews to each product |
reviews_per_product | integer | 8 | Max reviews per product |
include_variants | boolean | true | Include size/colour variants in PDP |
include_analytics | boolean | true | Compute supplier analytics |
sort_option | enum | — | POPULARITY, PRICE_ASC, PRICE_DESC, NEW_ARRIVALS |
delay_between_requests | integer | 500 | Milliseconds between requests |
proxy_url | string | — | Optional HTTP/HTTPS proxy (not Apify Proxy) |
Output
All items are pushed to the default Dataset. The type field indicates record kind:
type: "product" — search/category/supplier/bulk modes
{"type": "product","catalog_id": 123456,"name": "Banarasi Silk Saree","price": 499,"original_price": 999,"discount": 50.0,"rating": 4.3,"reviews_count": 128,"supplier_name": "Fashion Hub","supplier_id": 34285,"category": "Sarees","url": "https://www.meesho.com/product/123456","image_url": "https://images.meesho.com/...","images": ["..."],"reviews": [{"rating": 5,"review_text": "Beautiful!","reviewer_name": "Priya S."}],"variants": [],"fetched_at": "2025-01-01T12:00:00+00:00"}
type: "product" — product_detail mode (rich)
Same as above plus description, final_price, and fully resolved variants:
{"variants": [{"variant_id": 789,"size": "Free","color": "Pink","price": 499,"stock": true}]}
type: "supplier_analytics" — supplier mode
{"type": "supplier_analytics","supplier_id": 34285,"supplier_name": "Fashion Hub","scraped_products": 47,"avg_price": 612.5,"avg_discount": 38.2,"avg_rating": 4.12,"total_reviews": 5340,"price_range": { "min": 199, "max": 2499 },"rating_distribution": { "1": 2, "2": 3, "3": 8, "4": 21, "5": 13 },"top_categories": ["Sarees", "Kurtis", "Lehengas"],"bestsellers": [{ "catalog_id": 123456, "name": "..." }]}
type: "category" — fetch_categories mode
{"type": "category","id": 88,"name": "Sarees","section_name": "Ethnic Wear","group_name": "Women","image_url": "https://images.meesho.com/..."}
Notes
- Uses the Meesho Android API (anonymous JWT, no login required).
- No Apify Proxy. Direct connections only; pass
proxy_urlfor your own proxy. - Supplier product discovery uses a search+filter strategy (anonymous API has no
/suppliersendpoint). - Rate limiting: configurable
delay_between_requests(default 500 ms).
Version
1.0.0 — initial release