# Ulta product review extractor by URL

**Use case:** 

Extract recent Ulta product reviews, product details, prices, ratings, SKU, and availability from a product URL.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.ulta.com/p/soft-pinch-lip-oil-stick-pimprod2059833?sku=2658777"
    }
  ],
  "maxItems": 25,
  "includeReviews": true,
  "maxReviewsPerProduct": 20
}
```

## Output

```json
{
  "recordType": {
    "label": "Record type"
  },
  "brand": {
    "label": "Brand"
  },
  "productName": {
    "label": "Product"
  },
  "price": {
    "label": "Price"
  },
  "salePrice": {
    "label": "Sale price"
  },
  "rating": {
    "label": "Rating"
  },
  "reviewCount": {
    "label": "Review count"
  },
  "reviewTitle": {
    "label": "Review title"
  },
  "reviewRating": {
    "label": "Review rating"
  },
  "reviewAuthor": {
    "label": "Review author"
  },
  "reviewDate": {
    "label": "Review date"
  },
  "productUrl": {
    "label": "Product URL"
  },
  "category": {
    "label": "Category"
  },
  "variant": {
    "label": "Variant"
  },
  "availability": {
    "label": "Availability"
  },
  "skuId": {
    "label": "SKU"
  },
  "productId": {
    "label": "Product ID"
  },
  "reviewText": {
    "label": "Review text"
  },
  "reviewLocation": {
    "label": "Review location"
  },
  "imageUrl": {
    "label": "Image URL"
  },
  "sourceUrl": {
    "label": "Source URL"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

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