# Best Buy product review extractor

**Use case:** 

Collect structured customer reviews for a specific Best Buy SKU or product URL and export them to JSON, CSV, or Excel.

## Input

```json
{
  "productIds": [
    "6418599"
  ],
  "startUrls": [
    {
      "url": "https://www.bestbuy.com/site/apple-macbook-air/6418599.p?skuId=6418599"
    }
  ],
  "maxReviews": 50,
  "sort": "newest"
}
```

## 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.