# Scrape Nykaa Products for Beauty Market Research

**Use case:** 

Scrape Nykaa product search and category pages — product name, brand, price, MRP, discount, rating, and reviews — as clean JSON. For beauty market research, pri

## Input

```json
{
  "queries": [
    "lipstick"
  ],
  "category": "makeup",
  "sortBy": "relevance",
  "maxResults": 10,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "IN"
  }
}
```

## Output

```json
{
  "product_name": {
    "label": "Product",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "original_price": {
    "label": "MRP",
    "format": "number"
  },
  "discount_percent": {
    "label": "Discount %",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "rating_count": {
    "label": "Reviews",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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