# Compare Amazon offers and seller information

**Use case:** 

Collect one visible Amazon offer and enrich its public seller profile with price, shipping, ratings, business details, feedback, and storefront data.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.amazon.com/dp/B01MG4OX6Q"
    }
  ],
  "asins": [
    "B01MG4OX6Q"
  ],
  "marketplace": "US",
  "maxResultsPerTarget": 1,
  "maxTotalResults": 1,
  "maxSearchPages": 1,
  "resultDepth": "product",
  "maxVariantResultsPerProduct": 0,
  "fetchVariantPrices": false,
  "maxOffersPerProduct": 1,
  "includeSellerProfiles": true,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "status": {
    "label": "Status",
    "format": "string"
  },
  "asin": {
    "label": "ASIN",
    "format": "string"
  },
  "title": {
    "label": "Product title",
    "format": "string"
  },
  "seller": {
    "label": "Seller",
    "format": "object"
  },
  "offerCount": {
    "label": "Offer count",
    "format": "integer"
  },
  "offers": {
    "label": "Offers",
    "format": "array"
  },
  "marketplace.countryCode": {
    "label": "Country code"
  },
  "delivery.loadedCountryCode": {
    "label": "Loaded country code"
  },
  "url": {
    "label": "Product URL",
    "format": "string"
  },
  "error.message": {
    "label": "Message"
  }
}
```

## About this Actor

This example demonstrates how to use [Free Amazon Product Scraper: Prices & Sellers](https://apify.com/kingly_winter/amazon-product-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/kingly_winter/amazon-product-scraper) to learn more, explore other use cases, and run it yourself.