# Google Shopping price comparison scraper

**Use case:** 

Compare Google Shopping prices across merchants for any keyword. Price-ranked rows with discount, rating, reviews and delivery.

## Input

```json
{
  "searchQueries": [
    "wireless earbuds",
    "air fryer",
    "robot vacuum"
  ],
  "country": "us",
  "maxResultsPerQuery": 40,
  "sort": "price_low",
  "onSaleOnly": false,
  "freeShippingOnly": false
}
```

## Output

```json
{
  "query": {
    "label": "Query"
  },
  "title": {
    "label": "Product"
  },
  "merchant": {
    "label": "Merchant"
  },
  "priceValue": {
    "label": "Price"
  },
  "currency": {
    "label": "Currency"
  },
  "priceRank": {
    "label": "Rank"
  },
  "medianPriceValue": {
    "label": "Median price"
  },
  "priceVsMedianPercent": {
    "label": "vs median %"
  },
  "isLowestPrice": {
    "label": "Cheapest"
  },
  "comparedProducts": {
    "label": "Compared against"
  }
}
```

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