# eBay Active Listings by Keyword

**Use case:** 

Scrape live eBay listings by keyword — title, price, condition, images and seller. No browser, structured JSON.

## Input

```json
{
  "itemStatus": "active",
  "query": "Nintendo Switch OLED",
  "country": "US",
  "condition": "used",
  "sort": "best_match",
  "listingType": "all",
  "freeShipping": false,
  "returnsAccepted": false,
  "maxResults": 100,
  "maxPages": 5,
  "includeDetails": false,
  "compact": false,
  "incrementalMode": false,
  "emitUnchanged": false,
  "skipReposts": false,
  "notificationLimit": 5,
  "notifyOnlyChanges": false,
  "excludeEmptyFields": false
}
```

## Output

```json
{
  "title": {
    "label": "Title"
  },
  "soldDate": {
    "label": "Sold date"
  },
  "priceText": {
    "label": "Price text"
  },
  "priceValue": {
    "label": "Price value"
  },
  "priceCurrency": {
    "label": "Price currency"
  },
  "condition": {
    "label": "Condition"
  },
  "brand": {
    "label": "Brand"
  },
  "sellerName": {
    "label": "Seller name"
  },
  "sellerFeedbackPercent": {
    "label": "Seller feedback percent"
  },
  "canonicalUrl": {
    "label": "Canonical url"
  }
}
```

## About this Actor

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