# eBay Sneakers Listings Scraper

**Use case:** 

Collect eBay sneaker listings with price, condition, brand, seller and item specifics for resale research.

## Input

```json
{
  "maxItems": 50,
  "withDetails": true,
  "searchQueries": [
    "nike air jordan"
  ],
  "itemUrls": [],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "wasPrice": {
    "label": "Was",
    "format": "number"
  },
  "discountPercent": {
    "label": "% off",
    "format": "number"
  },
  "condition": {
    "label": "Condition",
    "format": "text"
  },
  "sellerName": {
    "label": "Seller",
    "format": "text"
  },
  "sellerFeedbackPercent": {
    "label": "Feedback %",
    "format": "number"
  },
  "shipping": {
    "label": "Shipping",
    "format": "text"
  },
  "itemLocation": {
    "label": "Location",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "observedAt": {
    "label": "Scraped",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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