# eBay sold comps monitor for trading cards and collectibles

**Use case:** 

Monitor completed eBay sales for several collectibles queries to build pricing comps for inventory, valuation, and resale analysis.

## Input

```json
{
  "searchQueries": [
    "pokemon charizard psa 9",
    "lorcana enchanted foil",
    "vintage star wars figure"
  ],
  "maxListingsPerSearch": 50,
  "maxSearchPages": 1,
  "sort": "newly_listed",
  "condition": [
    "used"
  ],
  "listingType": "auction",
  "maxRequestRetries": 5
}
```

## Output

```json
{
  "thumbnail": {
    "label": "Image",
    "format": "image"
  },
  "itemId": {
    "label": "Item ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "soldPrice": {
    "label": "Sold Price ($)",
    "format": "number"
  },
  "soldDate": {
    "label": "Sold Date",
    "format": "text"
  },
  "condition": {
    "label": "Condition",
    "format": "text"
  },
  "bidsCount": {
    "label": "Bids",
    "format": "number"
  },
  "shippingCost": {
    "label": "Shipping",
    "format": "text"
  },
  "sellerName": {
    "label": "Seller",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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