# Compare Amazon seller ratings & reputation

**Use case:** 

Benchmark competing Amazon sellers by star rating, positive feedback %, and total ratings. Structured JSON for competitive analysis.

## Input

```json
{
  "sellerIds": [
    "A294P4X9EWVXLJ",
    "A1MCYUGJD2ILFU",
    "A3GHITH485Z657"
  ]
}
```

## Output

```json
{
  "sellerId": {
    "label": "Seller ID",
    "format": "string"
  },
  "sellerName": {
    "label": "Seller Name",
    "format": "string"
  },
  "businessName": {
    "label": "Business Name",
    "format": "string"
  },
  "sellerContactPhone": {
    "label": "Seller Contact Phone",
    "format": "string"
  },
  "businessAddress": {
    "label": "Business Address",
    "format": "string"
  },
  "storefrontUrl": {
    "label": "Storefront URL",
    "format": "string"
  },
  "starRating": {
    "label": "Star Rating",
    "format": "number"
  },
  "positiveFeedbackPercentage": {
    "label": "Positive Feedback %",
    "format": "number"
  },
  "totalRatings": {
    "label": "Total Ratings",
    "format": "number"
  },
  "aboutSellerData": {
    "label": "About Seller",
    "format": "string"
  }
}
```

## About this Actor

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