# Find sold listings on eBay

**Use case:** 

Scrape completed and sold listings from eBay for price research. Filter by listing type, get structured data. Pay per result.

## Input

```json
{
  "market": "us",
  "searchQuery": "iphone",
  "searchQueries": [
    "nintendo switch",
    "ps5",
    "xbox series x"
  ],
  "listingType": "sold",
  "condition": "any",
  "sortOrder": "bestMatch",
  "buyItNowOnly": false,
  "freeShippingOnly": false,
  "itemLocation": "any",
  "maxResults": 5,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title"
  },
  "price": {
    "label": "Price"
  },
  "buyerPrice": {
    "label": "Buyer total"
  },
  "currency": {
    "label": "Currency"
  },
  "condition": {
    "label": "Condition"
  },
  "buyingFormat": {
    "label": "Format"
  },
  "bids": {
    "label": "Bids"
  },
  "rating": {
    "label": "Rating"
  },
  "listingType": {
    "label": "Type"
  },
  "soldDate": {
    "label": "Sold date"
  },
  "soldCount": {
    "label": "Sold count"
  },
  "location": {
    "label": "Location"
  },
  "url": {
    "label": "URL"
  },
  "market": {
    "label": "Market"
  }
}
```

## About this Actor

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