# Find the cheapest Google Shopping price for a product

**Use case:** 

Scrape every Google Shopping offer for one product and rank them by price, so the cheapest merchant is the first row.

## Input

```json
{
  "searchQueries": [
    "sony wh-1000xm5"
  ],
  "country": "us",
  "maxResultsPerQuery": 0,
  "sort": "price_low",
  "onSaleOnly": false,
  "freeShippingOnly": false,
  "minReviewCount": 50
}
```

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