# Extract one Myntra product with size-level inventory

**Use case:** 

Turn a public Myntra product URL into a structured snapshot of its price, sizes, SKU availability, rating, and reviews.

## Input

```json
{
  "searchTerms": [],
  "startUrls": [
    {
      "url": "https://www.myntra.com/ethnic-dresses/sangria/sangria-girls-foil-printed-fit--flare-maxi-length-dress/32651082/buy"
    }
  ],
  "maxItems": 1,
  "maxReviewsPerProduct": 3,
  "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.