# Google Shopping Price Monitor

**Use case:** 

Monitor Google Shopping listings for merchant prices, ratings, reviews, delivery, product URLs, and ranked positions across queries.

## Input

```json
{
  "queries": [
    "standing desk",
    "office chair",
    "desk lamp"
  ],
  "maxResults": 75,
  "country": "us",
  "language": "en",
  "minPrice": 20,
  "maxPrice": 600,
  "sortBy": "review_score",
  "maxRequestRetries": 3
}
```

## Output

```json
{
  "title": {
    "label": "Product",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "string"
  },
  "merchant": {
    "label": "Merchant",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "integer"
  },
  "productUrl": {
    "label": "URL",
    "format": "string"
  },
  "delivery": {
    "label": "Delivery",
    "format": "string"
  },
  "position": {
    "label": "#",
    "format": "integer"
  },
  "query": {
    "label": "Query",
    "format": "string"
  }
}
```

## About this Actor

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