# Monitor Best Buy Laptop Prices

**Use case:** 

Track Best Buy laptop prices, brands, ratings, review counts, sale status, product images, availability, and product URLs.

## Input

```json
{
  "mode": "search",
  "searchQuery": "laptop",
  "categoryUrl": "https://www.bestbuy.com/site/all-laptops/pc-laptops/pcmcat247400050000.c",
  "productUrls": [
    "https://www.bestbuy.com/site/apple-macbook-air-13-inch-laptop/6534606.p"
  ],
  "minPrice": 500,
  "maxPrice": 2000,
  "brands": [
    "HP",
    "Dell",
    "Apple"
  ],
  "minRating": 4,
  "onSaleOnly": false,
  "openBoxOnly": false,
  "sortBy": "bestMatch",
  "maxProducts": 3,
  "includeSpecifications": false,
  "zipCode": "90210",
  "debugMode": false
}
```

## Output

```json
{
  "title": {
    "label": "Title"
  },
  "brand": {
    "label": "Brand"
  },
  "price": {
    "label": "Price"
  },
  "originalPrice": {
    "label": "Original price"
  },
  "savings": {
    "label": "Savings"
  },
  "savingsPercent": {
    "label": "Savings percent"
  },
  "rating": {
    "label": "Rating"
  },
  "reviewCount": {
    "label": "Review count"
  },
  "availability": {
    "label": "Availability"
  }
}
```

## About this Actor

This example demonstrates how to use [🛒 Best Buy Scraper - Prices, Deals, Ratings & Stock](https://apify.com/benthepythondev/bestbuy-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/benthepythondev/bestbuy-scraper) to learn more, explore other use cases, and run it yourself.