# Scrape Myntra dresses, prices, sizes, and stock

**Use case:** 

Find Myntra dresses and export current prices, discounts, size/SKU inventory, ratings, and selected reviews.

## Input

```json
{
  "searchTerms": [
    "dresses"
  ],
  "startUrls": [],
  "maxItems": 5,
  "maxReviewsPerProduct": 2,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "IN"
  }
}
```

## Output

```json
{
  "productId": {
    "label": "Product ID",
    "format": "integer"
  },
  "name": {
    "label": "Product",
    "format": "string"
  },
  "brand": {
    "label": "Brand",
    "format": "string"
  },
  "price": {
    "label": "Price (INR)",
    "format": "number"
  },
  "discountPercent": {
    "label": "Discount %",
    "format": "number"
  },
  "available": {
    "label": "Available",
    "format": "boolean"
  },
  "inventoryCount": {
    "label": "Inventory",
    "format": "integer"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "integer"
  },
  "url": {
    "label": "Product URL",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Myntra Products Scraper](https://apify.com/automation-lab/myntra-catalog-monitor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/myntra-catalog-monitor) to learn more, explore other use cases, and run it yourself.