Skip to Content

AJIO product data API

ShopAPIS extracts structured fashion product data from AJIO — Reliance’s #2 fashion marketplace in India — and returns it as clean JSON. For any AJIO listing you get title, brand, selling price and MRP, per-size availability matrix, color/colorway, fabric/material, fit, category taxonomy, ratings and the image gallery — the brand-normalized apparel attributes that flat price scrapers miss.

AJIO is India’s #2 fashion destination, part of the Reliance/Jio cluster, with about 31M monthly visits (Similarweb / plan2 research). India’s online retail market is ~$70B GMV in FY25 heading to a projected $214B by FY30, and AJIO’s curated fashion catalog — across labels, ethnic wear and own brands — provides one of the cleanest structured fashion taxonomies in the region.

Why AJIO data is hard to get

AJIO has no public catalog API, and the fashion attributes that matter render dynamically. The per-size availability grid, color variants, price/MRP, coupon-stacked offers and fabric details load client-side and shift as stock and promotions change. Apparel listings need brand-normalized parsing of article type, fit and material rather than a single price scrape, and the platform applies rate-limiting and bot detection. ShopAPIS resolves the full size/color matrix and fashion taxonomy into one INR-priced schema.

Data fields returned

  • Identity — product code, title, brand, article type, category path
  • Price — selling price, MRP, discount %, currency (INR)
  • Sizes — per-size availability matrix (in-stock / low / sold-out)
  • Variants — color/colorway options with per-color stock
  • Attributes — fabric/material, fit, gender/section, occasion
  • Reviews — count, average rating
  • Media — image gallery

Sample response

{ "platform": "ajio", "product_code": "469912345", "url": "https://www.ajio.com/p/469912345", "title": "Slim Fit Cotton Casual Shirt", "brand": "Brand A", "article_type": "Shirt", "category_path": ["Men", "Clothing", "Casual Shirts"], "price": { "selling": 899, "mrp": 1999, "discount_pct": 55, "currency": "INR" }, "variants": [ { "color": "Sky Blue", "sizes": [ { "size": "M", "status": "in_stock" }, { "size": "L", "status": "low" }, { "size": "XL", "status": "sold_out" } ] }, { "color": "White", "sizes": [ { "size": "M", "status": "in_stock" }, { "size": "L", "status": "in_stock" } ] } ], "attributes": { "fabric": "100% Cotton", "fit": "Slim Fit", "section": "Men", "occasion": "Casual" }, "reviews": { "count": 1240, "rating": 4.2 }, "images": ["https://assets.ajio.com/medias/sys_master/root/469912345_skyblue_1.jpg"] }

Markets and domains covered

AJIO is India-domestic: domain ajio.com, INR-priced and English-language, focused on fashion, apparel and footwear across labels and own brands. ShopAPIS resolves by product code or URL and returns the complete color × size availability grid.

Use cases

For fashion, the size/color availability matrix reveals real sell-through. ShopAPIS returns the full grid per color, not just a single in-stock flag.

Last updated on