# eBay Pokémon Card Sold Price Data Extractor

**Use case:** 

Retrieve sold price data for graded PSA 10 Pokémon cards on eBay. Gain insights into completed listings, including price and shipping details.

## Input

```json
{
  "mode": "sold",
  "query": "pokemon card graded psa 10",
  "categoryId": "177",
  "categoryUrl": "https://www.ebay.com/b/Laptops-Netbooks/175672/bn_1648276",
  "seller": "bestbuy",
  "itemUrl": "https://www.ebay.com/itm/364567890123",
  "itemUrls": [],
  "itemIds": [],
  "condition": "",
  "buyingFormat": "",
  "sort": "",
  "freeShipping": false,
  "priceMin": "50",
  "priceMax": "500",
  "domain": "ebay.com",
  "maxResults": 200,
  "enrichDetails": false,
  "proxy": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "_mode": {
    "label": "Mode",
    "format": "text"
  },
  "itemId": {
    "label": "Item ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "shippingCost": {
    "label": "Shipping",
    "format": "number"
  },
  "condition": {
    "label": "Condition",
    "format": "text"
  },
  "buyingFormat": {
    "label": "Buying format",
    "format": "text"
  },
  "itemLocation": {
    "label": "Location",
    "format": "text"
  },
  "sellerName": {
    "label": "Seller",
    "format": "text"
  },
  "soldCount": {
    "label": "Sold",
    "format": "number"
  },
  "itemUrl": {
    "label": "URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped",
    "format": "date"
  }
}
```

## About this Actor

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