# Amazon wireless earbuds review scraper

**Use case:** 

Scrape Amazon reviews for wireless earbuds with ratings, titles, authors, review text, helpful votes, verification status, and dates.

## Input

```json
{
  "asins": [
    "B09G9FPHY6"
  ],
  "marketplace": "US",
  "maxReviewsPerProduct": 20,
  "sort": "recent",
  "filterByStars": "all",
  "maxRequestRetries": 2
}
```

## Output

```json
{
  "asin": {
    "label": "ASIN",
    "format": "text"
  },
  "productName": {
    "label": "Product",
    "format": "text"
  },
  "reviewId": {
    "label": "Review ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "date": {
    "label": "Date",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "isVerifiedPurchase": {
    "label": "Verified",
    "format": "boolean"
  },
  "helpfulVotes": {
    "label": "Helpful",
    "format": "number"
  },
  "body": {
    "label": "Review Text",
    "format": "text"
  },
  "reviewUrl": {
    "label": "Review URL",
    "format": "link"
  },
  "marketplace": {
    "label": "Marketplace",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

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