# Amazon Germany Product Search Results

**Use case:** 

Scrape an Amazon.de coffee machine search URL and export ranked products with EUR prices, ASINs, ratings, images, badges, and sponsored signals.

## Input

```json
{
  "searchQueries": [
    "wireless mouse"
  ],
  "startUrls": [
    {
      "url": "https://www.amazon.de/s?k=kaffeemaschine"
    }
  ],
  "marketplace": "US",
  "maxItems": 20,
  "maxPagesPerQuery": 2,
  "sort": "relevance",
  "includeSponsored": true,
  "maxRequestRetries": 4
}
```

## Output

```json
{
  "rank": {
    "label": "Rank",
    "format": "integer"
  },
  "title": {
    "label": "Product",
    "format": "string"
  },
  "asin": {
    "label": "ASIN",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "integer"
  },
  "isSponsored": {
    "label": "Sponsored",
    "format": "boolean"
  },
  "isPrime": {
    "label": "Prime",
    "format": "boolean"
  },
  "marketplace": {
    "label": "Marketplace",
    "format": "string"
  },
  "url": {
    "label": "Product URL",
    "format": "string"
  },
  "imageUrl": {
    "label": "Image",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Amazon Product Search Results Scraper](https://apify.com/automation-lab/amazon-product-search-results-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/amazon-product-search-results-scraper) to learn more, explore other use cases, and run it yourself.