# Extract Negative Costco Product Reviews

**Use case:** 

Build a quality-alert dataset of one- and two-star Costco reviews with text, dates, helpfulness, product metadata, and reviewer context.

## Input

```json
{
  "productUrlsOrIds": [
    "100737171"
  ],
  "maxReviews": 200,
  "maxReviewsPerProduct": 200,
  "sort": "lowest-rated",
  "ratings": [
    "1",
    "2"
  ]
}
```

## Output

```json
{
  "productName": {
    "label": "Product",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "reviewText": {
    "label": "Review",
    "format": "text"
  },
  "userNickname": {
    "label": "Reviewer",
    "format": "text"
  },
  "submissionTime": {
    "label": "Submitted",
    "format": "date"
  },
  "isRecommended": {
    "label": "Recommended",
    "format": "boolean"
  },
  "isVerifiedPurchaser": {
    "label": "Verified",
    "format": "boolean"
  },
  "helpfulVotes": {
    "label": "Helpful",
    "format": "number"
  },
  "reviewId": {
    "label": "Review ID",
    "format": "text"
  },
  "productId": {
    "label": "Product ID",
    "format": "text"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "link"
  },
  "averageRating": {
    "label": "Average rating",
    "format": "number"
  },
  "totalReviewCount": {
    "label": "Total reviews",
    "format": "number"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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