# eBay completed listings extractor for iPhone resale prices

**Use case:** 

Extract recent sold iPhone listings from eBay with final prices, conditions, sold dates, bids, shipping cost, and seller data.

## Input

```json
{
  "searchQueries": [
    "iPhone 15 Pro unlocked"
  ],
  "maxListingsPerSearch": 75,
  "maxSearchPages": 2,
  "sort": "newly_listed",
  "condition": [
    "used",
    "refurbished"
  ],
  "listingType": "buy_it_now",
  "minPrice": 400,
  "maxPrice": 1200,
  "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.