# Vitacost Product Reviews Scraper Example

**Use case:** 

Scrape Vitacost product reviews, ratings, reviewer details, dates, helpfulness, and sentiment-ready product summaries.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.vitacost.com/products/vitacost-vitamin-d3-mini-gels-125-mcg-5-000-iu-365-softgels-158727"
    }
  ],
  "productIds": [],
  "maxReviewsPerProduct": 10,
  "ratings": [],
  "verifiedOnly": false,
  "sortBy": "newest"
}
```

## Output

```json
{
  "productName": {
    "label": "Product",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "integer"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "body": {
    "label": "Review",
    "format": "string"
  },
  "reviewerName": {
    "label": "Reviewer",
    "format": "string"
  },
  "reviewDate": {
    "label": "Reviewed",
    "format": "string"
  },
  "verifiedBuyer": {
    "label": "Verified",
    "format": "boolean"
  },
  "recommendation": {
    "label": "Recommends",
    "format": "string"
  },
  "helpfulVotes": {
    "label": "Helpful",
    "format": "integer"
  },
  "transparencyBadges": {
    "label": "Transparency",
    "format": "array"
  },
  "reviewId": {
    "label": "Review ID",
    "format": "string"
  },
  "productId": {
    "label": "Product ID",
    "format": "string"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "string"
  },
  "averageRating": {
    "label": "Average",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "integer"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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