# Scrape eBay sold listings by keyword batch

**Use case:** 

Scrape eBay sold listings across 10 keywords for market analysts. How to skip the eBay API quota for sold data?

## Input

```json
{
  "keyword": [
    "yugioh cards",
    "pokemon cards",
    "baseball cards"
  ],
  "maxItems": 600,
  "country": "US",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "item_id": {
    "label": "Item ID"
  },
  "title": {
    "label": "Title"
  },
  "price": {
    "label": "Price"
  },
  "watch_count": {
    "label": "Watchers",
    "format": "number"
  },
  "sold_count": {
    "label": "Sold",
    "format": "number"
  },
  "delivery": {
    "label": "Delivery"
  },
  "location": {
    "label": "Location"
  },
  "free_returns": {
    "label": "Free Returns",
    "format": "boolean"
  },
  "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.