# Scrape Google Shopping electronics prices

**Use case:** 

Pull Google Shopping prices for electronics, limited to 4-star products with 100+ reviews and ranked against the query median.

## Input

```json
{
  "searchQueries": [
    "4k tv",
    "bluetooth speaker",
    "gaming mouse"
  ],
  "country": "us",
  "maxResultsPerQuery": 40,
  "sort": "price_low",
  "onSaleOnly": false,
  "freeShippingOnly": false,
  "minRating": 4,
  "minReviewCount": 100
}
```

## Output

```json
{
  "query": {
    "label": "Query"
  },
  "title": {
    "label": "Product"
  },
  "price": {
    "label": "Price"
  },
  "priceValue": {
    "label": "Price value"
  },
  "currency": {
    "label": "Currency"
  },
  "originalPrice": {
    "label": "Was"
  },
  "discountPercent": {
    "label": "Off %"
  },
  "priceRank": {
    "label": "Price rank"
  },
  "priceVsMedianPercent": {
    "label": "vs median %"
  },
  "merchant": {
    "label": "Merchant"
  },
  "rating": {
    "label": "Rating"
  },
  "reviewCount": {
    "label": "Reviews"
  },
  "delivery": {
    "label": "Delivery"
  },
  "productUrl": {
    "label": "Google product page"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Shopping Scraper - Prices, Merchants, Ratings](https://apify.com/webdata_labs/google-shopping-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/webdata_labs/google-shopping-scraper) to learn more, explore other use cases, and run it yourself.