# PetSmart Product Review Monitor

**Use case:** 

Monitor recent one- to three-star PetSmart reviews across products for quality, reputation, and voice-of-customer workflows.

## Input

```json
{
  "productIds": [
    "1095",
    "51031"
  ],
  "maxReviewsPerProduct": 250,
  "sort": "newest",
  "minRating": 1,
  "maxRating": 3,
  "submittedAfter": "2026-01-01",
  "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.