# Sephora Sunscreen Product Extractor

**Use case:** 

Scrape Sephora sunscreen catalog rows with brands, list prices, product IDs, SKU IDs, reviews, and badges.

## Input

```json
{
  "queries": [
    "sunscreen"
  ],
  "startUrls": [
    {
      "url": "https://www.sephora.com/search?keyword=vitamin%20c%20serum"
    }
  ],
  "maxItemsPerQuery": 150,
  "pageSize": 60,
  "includeCategories": true,
  "includeRefinements": true,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "query": {
    "label": "Query"
  },
  "rank": {
    "label": "Rank"
  },
  "brandName": {
    "label": "Brand"
  },
  "displayName": {
    "label": "Product"
  },
  "productId": {
    "label": "Product ID"
  },
  "skuId": {
    "label": "SKU ID"
  },
  "listPrice": {
    "label": "List price"
  },
  "rating": {
    "label": "Rating"
  },
  "reviews": {
    "label": "Reviews"
  },
  "isBestseller": {
    "label": "Bestseller"
  },
  "isNew": {
    "label": "New"
  },
  "isSephoraExclusive": {
    "label": "Sephora exclusive"
  },
  "sponsored": {
    "label": "Sponsored"
  },
  "productUrl": {
    "label": "Product URL"
  },
  "imageUrl": {
    "label": "Image"
  },
  "totalProducts": {
    "label": "Total products"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

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