# Amazon seller reputation monitor workflow example

**Use case:** 

Monitor recent Amazon seller comments across competitors or suppliers and send typed feedback records into Sheets, Slack, or a database.

## Input

```json
{
  "sellerIds": [
    "A9U20DL23XRAV",
    "A2L77EE7U53NWQ"
  ],
  "marketplace": "US",
  "maxFeedback": 100,
  "starFilter": "all",
  "sentimentFilter": "all",
  "dateFrom": "2026-01-01",
  "includeSuppressed": true,
  "proxyConfiguration": {
    "useApifyProxy": false
  },
  "maxRequestRetries": 2
}
```

## Output

```json
{
  "sellerId": {
    "label": "Seller ID",
    "format": "text"
  },
  "sellerName": {
    "label": "Seller",
    "format": "text"
  },
  "marketplace": {
    "label": "Marketplace",
    "format": "text"
  },
  "rating": {
    "label": "Stars",
    "format": "number"
  },
  "sentiment": {
    "label": "Sentiment",
    "format": "text"
  },
  "comment": {
    "label": "Feedback comment",
    "format": "text"
  },
  "reviewerName": {
    "label": "Reviewer",
    "format": "text"
  },
  "feedbackDate": {
    "label": "Source date",
    "format": "text"
  },
  "feedbackDateIso": {
    "label": "ISO date",
    "format": "date"
  },
  "isSuppressed": {
    "label": "Suppressed",
    "format": "boolean"
  },
  "suppressionReason": {
    "label": "Suppression reason",
    "format": "text"
  },
  "hasSellerResponse": {
    "label": "Seller replied",
    "format": "boolean"
  },
  "sellerResponse": {
    "label": "Seller response",
    "format": "text"
  },
  "sellerResponseDate": {
    "label": "Response date",
    "format": "text"
  },
  "fulfillmentChannel": {
    "label": "Fulfillment",
    "format": "text"
  },
  "positiveFeedbackPercent": {
    "label": "Positive %",
    "format": "number"
  },
  "overallRating": {
    "label": "Overall rating",
    "format": "number"
  },
  "ratings12Months": {
    "label": "12-month ratings",
    "format": "number"
  },
  "ratingsLifetime": {
    "label": "Lifetime ratings",
    "format": "number"
  },
  "feedbackId": {
    "label": "Feedback ID",
    "format": "text"
  },
  "reviewerProfileUrl": {
    "label": "Reviewer profile",
    "format": "link"
  },
  "sellerUrl": {
    "label": "Seller profile",
    "format": "link"
  },
  "sourcePage": {
    "label": "Source page",
    "format": "number"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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