# Compare Amazon Seller Offers and Delivery Details

**Use case:** 

Extract all available seller offers, pricing, and delivery specifics for a given product to analyze marketplace competition. Identify optimal sourcing opportuni

## Input

```json
{
  "productUrls": [
    "https://www.amazon.com/Apple-AirPods-Pro-2nd-Generation/dp/B0BDHWDR1M",
    "https://www.amazon.com/Sony-WH-1000XM5-Canceling-Headphones-hands-free/dp/B0BWM6B89L"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "proxyCountry": "GB",
  "rateLimitDelay": 2
}
```

## Output

```json
{
  "title": {
    "label": "Product Title",
    "format": "text"
  },
  "asin": {
    "label": "ASIN",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "stars": {
    "label": "Rating",
    "format": "number"
  },
  "reviewsCount": {
    "label": "Reviews",
    "format": "number"
  },
  "inStock": {
    "label": "In Stock",
    "format": "boolean"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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