# Nykaa competitor price monitor workflow

**Use case:** 

Monitor multiple Nykaa categories for recurring price, discount, assortment, rating, stock, and promotion changes in one export-ready dataset.

## Input

```json
{
  "categoryUrls": [
    "https://www.nykaa.com/skin/moisturizers/serums-essence/c/8397",
    "https://www.nykaa.com/makeup/face/foundation/c/228"
  ],
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "IN"
  }
}
```

## Output

```json
{
  "source": {
    "label": "Source"
  },
  "categoryId": {
    "label": "Category ID"
  },
  "productId": {
    "label": "Product ID"
  },
  "sku": {
    "label": "SKU"
  },
  "name": {
    "label": "Product"
  },
  "brand": {
    "label": "Brand"
  },
  "mrp": {
    "label": "MRP",
    "format": "number"
  },
  "currentPrice": {
    "label": "Price",
    "format": "number"
  },
  "discountPercent": {
    "label": "Discount %",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "ratingCount": {
    "label": "Ratings",
    "format": "number"
  },
  "stock": {
    "label": "Stock"
  },
  "offerCount": {
    "label": "Offers",
    "format": "number"
  },
  "offers": {
    "label": "Offer details"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "link"
  },
  "categoryUrl": {
    "label": "Category URL",
    "format": "link"
  },
  "categoryValues": {
    "label": "Category values"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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