# Google Shopping API: Look Up Prices by GTIN/EAN Barcode (DE)

**Use case:** 

Check shopping.google.de prices by EAN/GTIN barcode. Get all seller offers with prices, shipping, totals & availability as JSON. No scraping setup needed.

## Input

```json
{
  "operation": "search-by-gtin",
  "values": [
    "3416070001811"
  ],
  "country": "de"
}
```

## Output

```json
{
  "query": {
    "label": "Query",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "result.name": {
    "label": "Name",
    "format": "text"
  },
  "result.url": {
    "label": "Product URL",
    "format": "link"
  },
  "result.price_min": {
    "label": "Min total",
    "format": "number"
  },
  "result.offers_count": {
    "label": "Offers",
    "format": "number"
  },
  "errorCode": {
    "label": "Error code",
    "format": "string"
  },
  "error": {
    "label": "Error message",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Shopping EAN/GTIN Price Data API](https://apify.com/pricepirate/google-shopping-ean-gtin-price-data-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/pricepirate/google-shopping-ean-gtin-price-data-api) to learn more, explore other use cases, and run it yourself.