# eBay Search Scraper: Extract Product Listings at Scale

**Use case:** 

Scrape eBay listings without an API key. Get prices, shipping, seller feedback, and direct URLs for any keyword. Filter by price, condition, and listing type.

## Input

```json
{
  "query": "digital camera",
  "maxSearchPages": 5,
  "maxResults": 50,
  "sort": "best_match",
  "soldOnly": false
}
```

## Output

```json
{
  "image_url": {
    "label": "Image",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "string"
  },
  "sold_date": {
    "label": "Sold Date",
    "format": "string"
  },
  "condition": {
    "label": "Condition",
    "format": "string"
  },
  "shipping": {
    "label": "Shipping",
    "format": "string"
  },
  "seller_name": {
    "label": "Seller",
    "format": "string"
  },
  "seller_feedback": {
    "label": "Feedback",
    "format": "string"
  },
  "is_sponsored": {
    "label": "Sponsored",
    "format": "boolean"
  },
  "url": {
    "label": "Listing URL",
    "format": "string"
  }
}
```

## About this Actor

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