Snapdeal product data API
ShopAPIS extracts structured product data from Snapdeal — India’s value-focused “Bharat” marketplace — and returns it as clean JSON. For any Snapdeal listing you get title, selling price and MRP, discount, brand, seller name and rating, variant matrix, category path, stock, rating, review count and the image gallery, priced in INR — covering the value and Tier 2–4 segment that premium catalogs underserve.
Snapdeal is a value-segment marketplace serving roughly 6.6M monthly visits, positioned around affordable fashion, home and general merchandise for non-metro India (Similarweb / plan2 research). India’s online retail market is ~$70B GMV in FY25 projected toward $214B by FY30, and Snapdeal’s low-price-point catalog is a useful source for value-segment price benchmarking.
Why Snapdeal data is hard to get
Snapdeal’s catalog is broad, seller-driven and lightly structured, with no full public catalog API. Selling price, MRP, discount, per-variant stock and seller details render dynamically and vary by promotion; value-segment listings often have inconsistent, seller-authored attributes that need normalizing. The platform applies standard rate-limiting and bot detection. ShopAPIS resolves price, MRP, seller and variant data into one INR-priced schema so value-segment SKUs are comparable.
Data fields returned
- Identity — product ID, title, brand, category path
- Price — selling price, MRP, discount %, currency (INR)
- Seller — seller name, seller rating
- Variants — size/color/spec options, per-variant price and stock
- Availability — in-stock flag
- Reviews — count, average rating
- Media — image gallery
Sample response
{
"platform": "snapdeal",
"product_id": "678901234",
"url": "https://www.snapdeal.com/product/mens-running-shoes/678901234",
"title": "Men's Mesh Lace-Up Running Shoes",
"brand": "Generic",
"category_path": ["Footwear", "Men's Footwear", "Sports Shoes"],
"price": { "selling": 499, "mrp": 1999, "discount_pct": 75, "currency": "INR" },
"seller": { "name": "TrendyKart", "rating": 3.9 },
"variants": [
{ "size": "UK 8", "color": "Grey", "price": 499, "in_stock": true },
{ "size": "UK 9", "color": "Grey", "price": 499, "in_stock": true },
{ "size": "UK 10", "color": "Grey", "price": 499, "in_stock": false }
],
"reviews": { "count": 2140, "rating": 3.8 },
"images": ["https://n4.sdlcdn.com/imgs/678901234_1.jpg"]
}Markets and domains covered
Snapdeal is India-domestic: domain snapdeal.com, INR-priced and English/Hindi-language, focused on value fashion, home and general merchandise with strong Tier 2–4 reach. ShopAPIS resolves by product ID or URL.
Use cases
- Value-segment price monitoring — track low-price-point SKUs and discounts (/solutions/price-monitoring).
- Competitive intelligence — benchmark value pricing against Meesho and Flipkart (/solutions/competitive-intelligence).
- Catalog enrichment — normalize seller-authored value listings into clean attributes (/solutions/catalog-enrichment).
- Inventory tracking — monitor per-variant stock across sellers (/solutions/inventory-tracking).
Value-segment listings on Snapdeal carry inconsistent, seller-authored attributes. ShopAPIS normalizes them into a consistent schema so price-per-SKU comparisons across the Bharat segment are reliable.