# Staples product ratings scraper

**Use case:** 

Scrape Staples ratings, review totals, star distributions, Q&A counts, and AI review summaries from product URLs.

## Input

```json
{
  "productUrls": [
    "https://www.staples.com/epson-ecotank-photo-et-8550-wireless-wide-format-color-all-in-one-inkjet-printer-c11cj21201/product_24503591"
  ],
  "skus": [],
  "maxConcurrency": 5,
  "maxRetries": 2,
  "includeErrorRecords": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "status": {
    "label": "Status",
    "format": "text"
  },
  "itemNumber": {
    "label": "Item number",
    "format": "text"
  },
  "name": {
    "label": "Product",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "questionAnswerCount": {
    "label": "Q&A",
    "format": "number"
  },
  "ratingDistribution": {
    "label": "1–5-star distribution",
    "format": "array"
  },
  "aiReviewSummary": {
    "label": "Review summary",
    "format": "text"
  },
  "canonicalUrl": {
    "label": "Staples URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Staples Product Ratings & Review Summary Scraper](https://apify.com/automation-lab/staples-product-ratings-review-summary-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/staples-product-ratings-review-summary-scraper) to learn more, explore other use cases, and run it yourself.