# Chewy One-Star Review Extractor

**Use case:** 

Extract one-star Chewy reviews for quality, packaging, product safety, and customer sentiment analysis.

## Input

```json
{
  "productUrls": [
    {
      "url": "https://www.chewy.com/purina-pro-plan-shredded-blend-adult/product-reviews/114029"
    }
  ],
  "maxReviews": 50,
  "sort": "newest",
  "ratings": [
    "1"
  ]
}
```

## Output

```json
{
  "productName": {
    "label": "Product",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "integer"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "reviewText": {
    "label": "Review",
    "format": "string"
  },
  "reviewerName": {
    "label": "Reviewer",
    "format": "string"
  },
  "reviewDate": {
    "label": "Reviewed",
    "format": "string"
  },
  "helpfulVotes": {
    "label": "Helpful",
    "format": "integer"
  },
  "isIncentivized": {
    "label": "Incentivized",
    "format": "boolean"
  },
  "reviewId": {
    "label": "Review ID",
    "format": "string"
  },
  "productId": {
    "label": "Product ID",
    "format": "string"
  },
  "productBrand": {
    "label": "Brand",
    "format": "string"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "string"
  },
  "averageRating": {
    "label": "Average",
    "format": "number"
  },
  "ratingCount": {
    "label": "Ratings",
    "format": "integer"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "integer"
  },
  "sourceUrl": {
    "label": "Source",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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