# Scrape Perfume Reviews for Market Sentiment Analysis

**Use case:** 

Collect user reviews for specific high-volume perfumes to understand customer sentiment and identify common feedback themes. This data supports marketing campai

## Input

```json
{
  "perfumeUrls": [
    "https://www.fragrantica.com/perfume/Dior/Sauvage-31861.html",
    "https://www.fragrantica.com/perfume/Chanel/Bleu-de-Chanel-Eau-de-Parfum-30248.html",
    "https://www.fragrantica.com/perfume/Versace/Eros-16503.html"
  ],
  "maxItems": 3
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "string"
  },
  "brand": {
    "label": "Brand",
    "format": "string"
  },
  "year": {
    "label": "Year",
    "format": "integer"
  },
  "gender": {
    "label": "Gender",
    "format": "string"
  },
  "ratingValue": {
    "label": "Rating",
    "format": "number"
  },
  "ratingCount": {
    "label": "# Ratings",
    "format": "integer"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Fragrantica Perfume Scraper](https://apify.com/crawlerbros/fragrantica-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlerbros/fragrantica-scraper) to learn more, explore other use cases, and run it yourself.