# Google Shopping UK Price Extractor

**Use case:** 

Extract UK Google Shopping prices, merchants, ratings, reviews, delivery details, and product URLs for localized research.

## Input

```json
{
  "queries": [
    "running shoes",
    "espresso machine"
  ],
  "maxResults": 30,
  "country": "gb",
  "language": "en",
  "minPrice": 25,
  "maxPrice": 250,
  "sortBy": "price_low",
  "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.