# Scrape LEGO Star Wars Item Details - eBay

**Use case:** 

Export LEGO Star Wars item details from eBay with Item, Brand, Model, MPN, GTIN/UPC, Condition and Price. Export to JSON, CSV or Excel.

## Input

```json
{
  "mode": "search",
  "searchQueries": [
    "lego star wars ucs"
  ],
  "marketplace": "US",
  "condition": "any",
  "listingType": "all",
  "freeShippingOnly": false,
  "sort": "best_match",
  "enrichItemDetails": true,
  "emitSellerLeads": false,
  "computeAnalytics": false,
  "maxItems": 50,
  "maxSellers": 50,
  "deduplicateResults": true,
  "monitorMode": false,
  "monitorKey": "default",
  "maxConcurrency": 4,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "title": {
    "label": "Item",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "model": {
    "label": "Model",
    "format": "text"
  },
  "mpn": {
    "label": "MPN",
    "format": "text"
  },
  "gtin13": {
    "label": "GTIN/UPC",
    "format": "text"
  },
  "condition": {
    "label": "Condition",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "object"
  },
  "rating": {
    "label": "Rating",
    "format": "object"
  },
  "soldQuantity": {
    "label": "Sold",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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