# Track sneaker listing prices on eBay

**Use case:** 

Scrape eBay sneaker listings with price, shipping, total cost, size and condition. Export live resale market prices to CSV or JSON.

## Input

```json
{
  "searchQueries": [
    "nike dunk low panda",
    "jordan 1 low"
  ],
  "market": "US",
  "maxListingsPerSearch": 60,
  "condition": "new",
  "listingType": "all",
  "minPrice": 40,
  "freeShippingOnly": false,
  "sellerLocation": "any",
  "sort": "best_match",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "query": {
    "label": "Query"
  },
  "title": {
    "label": "Item"
  },
  "price": {
    "label": "Price"
  },
  "shippingCost": {
    "label": "Shipping"
  },
  "totalPrice": {
    "label": "Total"
  },
  "currency": {
    "label": "Currency"
  },
  "condition": {
    "label": "Condition"
  },
  "listingType": {
    "label": "Type"
  },
  "bidsCount": {
    "label": "Bids"
  },
  "bestOfferAvailable": {
    "label": "Best offer"
  },
  "itemLocation": {
    "label": "Location"
  },
  "itemId": {
    "label": "Item ID"
  },
  "url": {
    "label": "URL"
  }
}
```

## About this Actor

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