# Search Amazon Products by Keyword

**Use case:** 

Search any Amazon marketplace by keyword and export products title, price, rating, review count, Prime and best-seller badges, image and URL to JSON, CSV, Excel

## Input

```json
{
  "query": "wireless earbuds",
  "country": "US",
  "limit": 20
}
```

## Output

```json
{
  "asin": {
    "label": "ASIN",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "ratingsCount": {
    "label": "# Ratings",
    "format": "number"
  },
  "isPrime": {
    "label": "Prime",
    "format": "boolean"
  },
  "url": {
    "label": "Product URL",
    "format": "link"
  },
  "photo": {
    "label": "Image",
    "format": "image"
  }
}
```

## About this Actor

This example demonstrates how to use [Amazon Product Scraper – Search & Export Products by Keyword](https://apify.com/endspec/amazon-instant-product-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/endspec/amazon-instant-product-scraper) to learn more, explore other use cases, and run it yourself.