# Monitor competitor prices on Google Shopping

**Use case:** 

Track your products across chosen merchants on Google Shopping. Price rank and vs-median percent on every row, ready to schedule weekly.

## Input

```json
{
  "searchQueries": [
    "jbl vibe beam 2",
    "beats solo buds"
  ],
  "country": "us",
  "maxResultsPerQuery": 40,
  "sort": "price_low",
  "onSaleOnly": false,
  "freeShippingOnly": false,
  "merchants": [
    "Best Buy",
    "Target",
    "Walmart"
  ]
}
```

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