# eBay Product Detail Extractor

**Use case:** 

Retrieve detailed information from individual eBay listings. Get structured data including title, price, condition, and seller details.

## Input

```json
{
  "url": "https://www.ebay.com/itm/206404105950",
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "images": {
    "label": "Image",
    "format": "array"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "object"
  },
  "condition": {
    "label": "Condition",
    "format": "text"
  },
  "description": {
    "label": "Item description from the seller",
    "format": "text"
  },
  "availability": {
    "label": "Availability",
    "format": "object"
  },
  "seller": {
    "label": "Seller",
    "format": "object"
  },
  "shipping": {
    "label": "Shipping",
    "format": "object"
  },
  "reviews": {
    "label": "Reviews",
    "format": "object"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

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