# eBay iPhone Listings Scraper

**Use case:** 

Scrape live eBay iPhone listings with title, price, condition, seller, image, and item URL. Export results to JSON or CSV.

## Input

```json
{
  "startUrl": "https://www.ebay.com/sch/i.html?_nkw=iphone+14&LH_Sold=1&LH_Complete=1",
  "maxItems": 50,
  "keywords": "iphone 13",
  "soldItemsOnly": false,
  "sortBy": "12",
  "country": "ebay.com",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "maxConcurrency": 3
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image Url",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "itemUrl": {
    "label": "Item Url",
    "format": "link"
  },
  "itemId": {
    "label": "Item Id",
    "format": "text"
  },
  "soldPrice": {
    "label": "Sold Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "originalPrice": {
    "label": "Original Price",
    "format": "number"
  },
  "shippingCost": {
    "label": "Shipping Cost",
    "format": "text"
  },
  "totalPrice": {
    "label": "Total Price",
    "format": "number"
  },
  "soldDate": {
    "label": "Sold Date",
    "format": "date"
  },
  "condition": {
    "label": "Condition",
    "format": "text"
  },
  "sellerName": {
    "label": "Seller Name",
    "format": "text"
  },
  "sellerFeedbackPercent": {
    "label": "Seller Feedback Percent",
    "format": "text"
  },
  "sellerFeedbackCount": {
    "label": "Seller Feedback Count",
    "format": "number"
  },
  "location": {
    "label": "Location",
    "format": "date"
  },
  "listingType": {
    "label": "Listing Type",
    "format": "text"
  },
  "bidCount": {
    "label": "Bid Count",
    "format": "number"
  },
  "isSponsored": {
    "label": "Is Sponsored",
    "format": "boolean"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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