# Sephora Product Listing Extractor

**Use case:** 

Extract 100 product details, prices, and reviews from Sephora's new makeup category. Access valuable insights for market research.

## Input

```json
{
  "startUrl": "https://www.sephora.me/ae-en/shop/new/view-all/new-in-makeup/new-makeup",
  "results_wanted": 100,
  "max_pages": 5,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "brand": {
    "label": "Brand",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "current_price": {
    "label": "Current Price",
    "format": "number"
  },
  "original_price": {
    "label": "Original Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "review_count": {
    "label": "Review Count",
    "format": "integer"
  },
  "shades": {
    "label": "Shades",
    "format": "string"
  },
  "is_new": {
    "label": "Is New",
    "format": "boolean"
  },
  "is_exclusive": {
    "label": "Is Exclusive",
    "format": "boolean"
  },
  "in_stock": {
    "label": "In Stock",
    "format": "boolean"
  },
  "is_low_stock": {
    "label": "Low Stock",
    "format": "boolean"
  },
  "product_type": {
    "label": "Product Type",
    "format": "string"
  },
  "product_url": {
    "label": "Product URL",
    "format": "string"
  },
  "image_url": {
    "label": "Image URL",
    "format": "string"
  },
  "scraped_at": {
    "label": "Scraped At",
    "format": "string"
  }
}
```

## About this Actor

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