# Scrape Graphics card listings and prices from eBay

**Use case:** 

Extract graphics card listings from eBay without a login: price, condition, seller, shipping and item details.

## Input

```json
{
  "searchQueries": [
    "graphics card"
  ],
  "sellers": [],
  "itemUrls": [],
  "sort": "best_match",
  "condition": "any",
  "buyingFormat": "any",
  "maxItemsPerSource": 240,
  "concurrency": 5,
  "proxyConfig": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "itemId": {
    "label": "Item ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "priceCurrency": {
    "label": "Currency",
    "format": "text"
  },
  "condition": {
    "label": "Condition",
    "format": "text"
  },
  "buyingFormat": {
    "label": "Format",
    "format": "text"
  },
  "soldCount": {
    "label": "Sold",
    "format": "number"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "seller": {
    "label": "Seller",
    "format": "text"
  },
  "sellerFeedback": {
    "label": "Seller feedback %",
    "format": "number"
  },
  "shipping": {
    "label": "Shipping",
    "format": "text"
  },
  "image": {
    "label": "Image",
    "format": "image"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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