# Audit Sephora product pages for pricing

**Use case:** 

Fetch public Sephora US product pages to verify current price, availability, and catalog fields for a known product list.

## Input

```json
{
  "searchQueries": [
    "rare beauty blush",
    "vitamin c serum"
  ],
  "productUrls": [
    "https://www.sephora.com/product/vanilla-nectar-body-hair-fragrance-mist-P517676"
  ],
  "maxResults": 20,
  "includeIngredients": false,
  "includeVariants": true
}
```

## Output

```json
{
  "title": {
    "label": "Product title",
    "format": "string"
  },
  "brand": {
    "label": "Brand",
    "format": "string"
  },
  "price": {
    "label": "Current price",
    "format": "number"
  },
  "listPrice": {
    "label": "List price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "availability": {
    "label": "Available",
    "format": "boolean"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Review count",
    "format": "integer"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "string"
  },
  "imageUrls": {
    "label": "Image URLs",
    "format": "array"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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