# Scrape Vintage Clothing & Collectibles from eBay

**Use case:** 

Extract detailed information on vintage clothing and collectible items to build inventory or conduct historical pricing analysis. This supports niche market res

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.ebay.com/sch/i.html?_nkw=vintage+t+shirt"
    },
    {
      "url": "https://www.ebay.com/sch/i.html?_nkw=antique+jewelry"
    }
  ],
  "maxItems": 400,
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "condition": {
    "label": "Condition",
    "format": "text"
  },
  "seller": {
    "label": "Seller",
    "format": "text"
  },
  "shippingCost": {
    "label": "Shipping",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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