# Best Buy reviews dataset scraper

**Use case:** 

Extract up to 500 Best Buy reviews across products for sentiment analysis, reputation tracking, and competitive product research.

## Input

```json
{
  "productIds": [
    "6418599",
    "5721600"
  ],
  "maxReviews": 500,
  "sort": "oldest"
}
```

## Output

```json
{
  "productId": {
    "label": "Product ID"
  },
  "reviewId": {
    "label": "Review ID"
  },
  "title": {
    "label": "Title"
  },
  "text": {
    "label": "Review"
  },
  "rating": {
    "label": "Rating"
  },
  "reviewerNickname": {
    "label": "Reviewer"
  },
  "date": {
    "label": "Date"
  },
  "recommended": {
    "label": "Recommended"
  },
  "helpfulVotes": {
    "label": "Helpful"
  },
  "unhelpfulVotes": {
    "label": "Unhelpful"
  },
  "mediaUrls": {
    "label": "Media"
  },
  "syndicated": {
    "label": "Syndicated"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

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