# Identify Top-Rated Perfumes & Fragrance Notes of 2023

**Use case:** 

Extract data from a curated list of popular 2023 perfumes to identify dominant fragrance notes and accords. This insight is crucial for product development team

## Input

```json
{
  "perfumeUrls": [
    "https://www.fragrantica.com/perfume/Givenchy/L-Interdit-Eau-de-Parfum-Rouge-Ultim-69830.html",
    "https://www.fragrantica.com/perfume/Maison-Margiela/Replica-Autumn-Vibes-69766.html",
    "https://www.fragrantica.com/perfume/Tom-Ford/Cafe-Rose-2023-86303.html",
    "https://www.fragrantica.com/perfume/Carolina-Herrera/Good-Girl-Superstars-Collector-Edition-2023-77568.html",
    "https://www.fragrantica.com/perfume/Yves-Saint-Laurent/Black-Opium-Le-Parfum-77114.html",
    "https://www.fragrantica.com/perfume/Guerlain/Aqua-Allegoria-Rosa-Palisandro-77292.html",
    "https://www.fragrantica.com/perfume/Versace/Dylan-Purple-77353.html",
    "https://www.fragrantica.com/perfume/Byredo/Mojave-Ghost-2023-86877.html",
    "https://www.fragrantica.com/perfume/Kilian/Love-Don-t-Be-Shy-Eau-Fraiche-80718.html",
    "https://www.fragrantica.com/perfume/Louis-Vuitton/Pacific-Chill-80860.html"
  ],
  "maxItems": 10
}
```

## 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.