AJIO Product Scraper πŸ›οΈ avatar

AJIO Product Scraper πŸ›οΈ

Try for free

6 hours trial then $19.99/month - No credit card required now

Go to Store
AJIO Product Scraper πŸ›οΈ

AJIO Product Scraper πŸ›οΈ

easyapi/ajio-product-scraper
Try for free

6 hours trial then $19.99/month - No credit card required now

Extract detailed product information from AJIO's fashion marketplace. Get comprehensive data including prices, discounts, images, and categories. Perfect for price monitoring, market research, and competitive analysis in India's e-commerce fashion sector. πŸ›οΈ

Developer
Maintained by Community

Actor Metrics

  • 2 monthly users

  • No reviews yet

  • 1 bookmark

  • >99% runs succeeded

  • Created in Feb 2025

  • Modified 8 days ago

Categories

Scrape detailed product information from AJIO, India's leading fashion e-commerce platform. Extract product details including prices, discounts, images, and categories with ease.

πŸ”₯ Features

  • Scrapes product listings from any AJIO search URL
  • Extracts comprehensive product details including:
    • Product name, code, and brand
    • Current price, original price, and discount information
    • Product categories (segment, vertical, brick)
    • High-quality product images (primary + additional views)
    • Complete product URLs
    • Coupon applicability status
  • Supports infinite scroll pagination
  • Built-in proxy rotation support
  • Randomized delays and user agents for reliable scraping
  • Efficient handling of rate limits and blocking

🎯 Use Cases

  • Price monitoring and competitive analysis
  • Product catalog aggregation
  • Fashion trend analysis
  • Inventory tracking
  • Market research and analysis

πŸ“ Tips

  • Use specific search URLs for targeted scraping
  • Adjust maxItems to control the amount of data collected
  • Consider using proxies for large-scale scraping

πŸ’‘ Input Parameters

The actor accepts the following input parameters:

  • searchUrls: Array of AJIO search URLs to scrape
  • maxItems: Maximum number of items to scrape (optional)
  • proxyConfiguration: Proxy settings (optional)

πŸ“Š Output

The actor outputs detailed product data in JSON format, including:

Input Example

A full explanation of an input example in JSON.

1{
2    "searchUrls": [
3        "https://www.ajio.com/search/?query=%3Arelevance%3Al1l3nestedcategory%3AWomen%20-%20Maternity%20Wear&text=shirt&classifier=intent&gridColumns=3"
4    ],
5    "maxItems": 50
6}

Output sample

The results will be wrapped into a dataset which you can always find in theΒ StorageΒ tab. Here's an excerpt from the data you'd get if you apply the input parameters above:

And here is the same data but in JSON. You can choose in which format to download your data: JSON, JSONL, Excel spreadsheet, HTML table, CSV, or XML.

1[
2    {
3        "searchUrl": "https://www.ajio.com/search/?query=%3Arelevance%3Al1l3nestedcategory%3AWomen%20-%20Maternity%20Wear&text=shirt&classifier=intent&gridColumns=3",
4        "productCode": "700098886005",
5        "name": "Graphic Print Oversized Fit T-Shirt",
6        "brand": "the-mom-store",
7        "category": {
8            "segment": "Women",
9            "vertical": "Maternity",
10            "brick": "Shirts,Tops&Tshirts"
11        },
12        "price": {
13            "current": 802,
14            "original": 1099,
15            "currency": "INR",
16            "discountPercent": "27% off",
17            "offerPrice": 725
18        },
19        "images": {
20            "primary": "https://assets.ajio.com/medias/sys_master/root/20240617/xu43/667022da1d763220fac57ac4/the_mom_store_lavender_graphic_print_oversized_fit_t-shirt.jpg",
21            "all": [
22                "https://assets.ajio.com/medias/sys_master/root/20240617/xu43/667022da1d763220fac57ac4/-473Wx593H-700098886-lavender-MODEL.jpg",
23                "https://assets.ajio.com/medias/sys_master/root/20240617/GCqf/667022da1d763220fac57a51/-473Wx593H-700098886-lavender-MODEL2.jpg",
24                "https://assets.ajio.com/medias/sys_master/root/20240617/GATr/667022da1d763220fac57a56/-473Wx593H-700098886-lavender-MODEL3.jpg",
25                "https://assets.ajio.com/medias/sys_master/root/20240617/0CQJ/667022da1d763220fac57a57/-473Wx593H-700098886-lavender-MODEL4.jpg",
26                "https://assets.ajio.com/medias/sys_master/root/20240617/htGY/667022da1d763220fac57a54/-473Wx593H-700098886-lavender-MODEL5.jpg",
27                "https://assets.ajio.com/medias/sys_master/root/20240617/X4VH/667022e01d763220fac57b0b/-473Wx593H-700098886-lavender-MODEL6.jpg"
28            ]
29        },
30        "productUrl": "https://www.ajio.com/the-mom-store-graphic-print-oversized-fit-t-shirt/p/700098886_lavender",
31        "planningCategory": "Clothing",
32        "couponStatus": "Coupon Applicable"
33    },
34    ...
35]