Meesho Pro Scraper — All-in-One avatar

Meesho Pro Scraper — All-in-One

Under maintenance

Pricing

from $4.50 / 1,000 results

Go to Apify Store
Meesho Pro Scraper — All-in-One

Meesho Pro Scraper — All-in-One

Under maintenance

Unified 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

axly

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Share

Extract products, prices, reviews, and supplier data from Meesho using the official Android API.
Supports 7 scraping modes in a single actor.


Modes

ModeDescriptionRequired Input
searchKeyword search, paginatedquery
categoryBrowse a category, paginatedcategory_id
product_detailDeep PDP + variants + reviewscatalog_ids or query
supplierAll products from one or more supplierssupplier_id / supplier_ids
bulk_searchLarge-scale keyword search with dedupquery, max_items
bulk_categoryLarge-scale category export with dedupcategory_id, max_items
fetch_categoriesFull 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

FieldTypeDefaultDescription
modeenumsearchScraping mode (see table above)
querystringSearch keyword
category_idintegerCategory leaf ID from fetch_categories
catalog_idsinteger[][]Explicit product IDs for product_detail mode
supplier_idintegerSingle supplier ID
supplier_idsinteger[][]Multiple supplier IDs
supplier_namestringOptional name hint (speeds up discovery)
limitinteger20Items per page (1–50)
max_pagesinteger10Page cap for search/category modes
max_itemsinteger500Hard cap for bulk/supplier modes
include_reviewsbooleantrueAttach reviews to each product
reviews_per_productinteger8Max reviews per product
include_variantsbooleantrueInclude size/colour variants in PDP
include_analyticsbooleantrueCompute supplier analytics
sort_optionenumPOPULARITY, PRICE_ASC, PRICE_DESC, NEW_ARRIVALS
delay_between_requestsinteger500Milliseconds between requests
proxy_urlstringOptional 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_url for your own proxy.
  • Supplier product discovery uses a search+filter strategy (anonymous API has no /suppliers endpoint).
  • Rate limiting: configurable delay_between_requests (default 500 ms).

Version

1.0.0 — initial release