# Scrape eBay listings for any keyword

**Use case:** 

Scrape eBay listings with price + watch count + seller location for dropshippers. How to scrape listings at scale across 10 keywords?

## Input

```json
{
  "keyword": [
    "bluetooth earbuds",
    "wireless charger"
  ],
  "maxItems": 120,
  "country": "US",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "image_url": {
    "label": "Photo",
    "format": "image"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "watch_count": {
    "label": "Watchers",
    "format": "number"
  },
  "sold_count": {
    "label": "Sold",
    "format": "number"
  },
  "location": {
    "label": "Location"
  },
  "url": {
    "label": "Link",
    "format": "link"
  }
}
```

## About this Actor

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