# eBay listings extractor for sneakers and seller data

**Use case:** 

Extract current eBay sneaker listings with price, condition, shipping, return policy, seller feedback, discounts, and listing URLs.

## Input

```json
{
  "searchQueries": [
    "Nike Dunk Low men's size 10"
  ],
  "maxProductsPerSearch": 80,
  "maxSearchPages": 2,
  "sort": "newly_listed",
  "condition": [
    "new"
  ],
  "listingType": "all",
  "minPrice": 50,
  "maxPrice": 300,
  "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.