# PetSmart Five-Star Review Extractor

**Use case:** 

Extract five-star PetSmart reviews for one product with review text, dates, media, recommendation flags, and helpfulness.

## Input

```json
{
  "productIds": [
    "1095"
  ],
  "maxReviewsPerProduct": 100,
  "sort": "newest",
  "minRating": 5,
  "maxRating": 5,
  "includeRatingsOnly": false
}
```

## Output

```json
{
  "reviewId": {
    "label": "Review ID",
    "format": "text"
  },
  "productId": {
    "label": "Product ID",
    "format": "text"
  },
  "productName": {
    "label": "Product",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "text": {
    "label": "Review",
    "format": "text"
  },
  "reviewerNickname": {
    "label": "Reviewer",
    "format": "text"
  },
  "submittedAt": {
    "label": "Submitted",
    "format": "date"
  },
  "isRecommended": {
    "label": "Recommended",
    "format": "boolean"
  },
  "helpfulVotes": {
    "label": "Helpful votes",
    "format": "number"
  },
  "media": {
    "label": "Media",
    "format": "array"
  },
  "productReviewCount": {
    "label": "Product review count",
    "format": "number"
  },
  "productAverageRating": {
    "label": "Average rating",
    "format": "number"
  },
  "sourceUrl": {
    "label": "Source",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped",
    "format": "date"
  }
}
```

## About this Actor

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