# eBay scraper for laptop listings, prices, and sellers

**Use case:** 

Scrape eBay laptop search results with product titles, prices, shipping, coupons, seller data, return policy, and listing URLs.

## Input

```json
{
  "searchQueries": [
    "laptop"
  ],
  "maxProductsPerSearch": 100,
  "maxSearchPages": 2,
  "sort": "best_match",
  "condition": [
    "new",
    "open_box"
  ],
  "listingType": "buy_it_now",
  "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.