Meesho Product Detail + Reviews Scraper avatar

Meesho Product Detail + Reviews Scraper

Pricing

from $5.00 / 1,000 results

Go to Apify Store
Meesho Product Detail + Reviews Scraper

Meesho Product Detail + Reviews Scraper

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

Pricing

from $5.00 / 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

Fetch rich, deep product data from Meesho — 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

FieldTypeDefaultDescription
catalog_idsinteger[][]List of catalog IDs to scrape
querystringSearch keyword; results are scraped in detail
max_itemsinteger20Max total products to process
include_reviewsbooleantrueFetch customer reviews
reviews_per_productinteger10Max reviews per product
include_variantsbooleantrueInclude size/colour variants
delay_between_requestsinteger600Delay between API calls (ms)
proxy_urlstringOptional HTTP/HTTPS proxy URL

At least one of catalog_ids or query must be provided.

Sample Input — by catalog IDs

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

Sample Input — by search query

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

Output

Each dataset item contains one full product record:

{
"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