# Newegg Negative Review Extractor

**Use case:** 

Extract low-rating Newegg GPU reviews with text, pros, cons, verified-purchase status, dates, media, and product context.

## Input

```json
{
  "productUrls": [
    {
      "url": "https://www.newegg.com/p/N82E16814932777"
    }
  ],
  "itemNumbers": [
    "N82E16814932777"
  ],
  "maxReviewsPerProduct": 8,
  "minRating": 1,
  "maxRating": 3,
  "sort": "newest",
  "includeRelatedProducts": false
}
```

## Output

```json
{
  "reviewId": {
    "label": "Review ID",
    "format": "text"
  },
  "requestedItemNumber": {
    "label": "Requested item",
    "format": "text"
  },
  "productItemNumber": {
    "label": "Review item",
    "format": "text"
  },
  "matchesRequestedProduct": {
    "label": "Exact requested item",
    "format": "boolean"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "link"
  },
  "productName": {
    "label": "Product"
  },
  "productCode": {
    "label": "Product code"
  },
  "brand": {
    "label": "Brand"
  },
  "category": {
    "label": "Category"
  },
  "productAverageRating": {
    "label": "Average rating"
  },
  "productTotalRatings": {
    "label": "Total ratings"
  },
  "productTextReviewCount": {
    "label": "Text reviews"
  },
  "fiveStarCount": {
    "label": "5-star"
  },
  "fourStarCount": {
    "label": "4-star"
  },
  "threeStarCount": {
    "label": "3-star"
  },
  "twoStarCount": {
    "label": "2-star"
  },
  "oneStarCount": {
    "label": "1-star"
  },
  "rating": {
    "label": "Rating"
  },
  "reviewedAt": {
    "label": "Reviewed at",
    "format": "date"
  },
  "title": {
    "label": "Title"
  },
  "text": {
    "label": "Review"
  },
  "pros": {
    "label": "Pros"
  },
  "cons": {
    "label": "Cons"
  },
  "reviewer": {
    "label": "Reviewer"
  },
  "verifiedPurchase": {
    "label": "Verified purchase"
  },
  "helpfulVotes": {
    "label": "Helpful votes"
  },
  "unhelpfulVotes": {
    "label": "Unhelpful votes"
  },
  "totalVotes": {
    "label": "Total votes"
  },
  "purchaseAgeCode": {
    "label": "Purchase age code"
  },
  "technicalLevelCode": {
    "label": "Technical level code"
  },
  "badges": {
    "label": "Badges"
  },
  "mediaUrls": {
    "label": "Media URLs"
  },
  "videoUrl": {
    "label": "Video",
    "format": "link"
  },
  "vendorResponse": {
    "label": "Vendor response"
  },
  "vendorResponseAt": {
    "label": "Vendor response at",
    "format": "date"
  },
  "sourceUrl": {
    "label": "Source",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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