# Google Shopping Product Scraper

**Use case:** 

Scrape Google Shopping product listings with prices, merchants, ratings, review counts, delivery, images, and product URLs.

## Input

```json
{
  "queries": [
    "wireless earbuds",
    "4k monitor"
  ],
  "maxResults": 40,
  "country": "us",
  "language": "en",
  "sortBy": "relevance",
  "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.