# CVS low-rating review extractor for one product

**Use case:** 

Collect one-star CVS product reviews with review text, dates, recommendation flags, quality ratings, replies, and stable review IDs.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.cvs.com/shop/cvs-ibuprofen-pain-reliever-fever-reducer-nsaid-200-mg-24-coated-tablets-prodid-358135-reviews"
    }
  ],
  "productIds": [
    "358135"
  ],
  "maxReviewsPerProduct": 100,
  "sort": "newest",
  "rating": 1,
  "includeRatingsOnly": false
}
```

## Output

```json
{
  "productName": {
    "label": "Product",
    "format": "text"
  },
  "productId": {
    "label": "Product ID",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "body": {
    "label": "Review",
    "format": "text"
  },
  "reviewerName": {
    "label": "Reviewer",
    "format": "text"
  },
  "verifiedPurchase": {
    "label": "Verified",
    "format": "boolean"
  },
  "recommended": {
    "label": "Recommended",
    "format": "boolean"
  },
  "reviewDate": {
    "label": "Date",
    "format": "date"
  },
  "valueRating": {
    "label": "Value",
    "format": "number"
  },
  "meetsExpectationsRating": {
    "label": "Meets expectations",
    "format": "number"
  },
  "qualityRating": {
    "label": "Quality",
    "format": "number"
  },
  "helpfulVotes": {
    "label": "Helpful votes",
    "format": "number"
  },
  "merchantReplies": {
    "label": "Merchant replies",
    "format": "array"
  },
  "mediaUrls": {
    "label": "Media",
    "format": "array"
  },
  "reviewId": {
    "label": "Review ID",
    "format": "text"
  },
  "sourceUrl": {
    "label": "Source",
    "format": "link"
  }
}
```

## About this Actor

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