# eBay price monitor scraper for marketplace research

**Use case:** 

Monitor several eBay product searches in one run to compare prices, sellers, coupons, shipping, and listing types across a market.

## Input

```json
{
  "searchQueries": [
    "standing desk",
    "ergonomic office chair",
    "monitor arm"
  ],
  "maxProductsPerSearch": 60,
  "maxSearchPages": 1,
  "sort": "price_low",
  "condition": [
    "new",
    "open_box"
  ],
  "listingType": "buy_it_now",
  "maxPrice": 500,
  "maxRequestRetries": 5
}
```

## Output

```json
{
  "thumbnail": {
    "label": "Image",
    "format": "image"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "priceString": {
    "label": "Price",
    "format": "text"
  },
  "shippingCost": {
    "label": "Shipping",
    "format": "text"
  },
  "returnPolicy": {
    "label": "Returns",
    "format": "text"
  },
  "coupon": {
    "label": "Coupon",
    "format": "text"
  },
  "discountText": {
    "label": "Discount",
    "format": "text"
  },
  "condition": {
    "label": "Condition",
    "format": "text"
  },
  "listingType": {
    "label": "Type",
    "format": "text"
  },
  "bidCount": {
    "label": "Bids",
    "format": "number"
  },
  "timeLeft": {
    "label": "Time Left",
    "format": "text"
  },
  "sellerName": {
    "label": "Seller",
    "format": "text"
  },
  "sellerFeedbackPercent": {
    "label": "Feedback",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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