# Search eBay Products by Keyword

**Use case:** 

Run a keyword search on eBay and scrape every matching listing. This demo searches www.ebay.com for Nintendo Switch OLED and returns product_title, price, currency, condition, seller_name, seller_feedback_percent, sold_count, watchers, shipping_cost, item_location, image_url and product_url. Swap in your own keywords and raise maxPages to pull more result pages.

## Input

```json
{
  "keywords": [
    "Nintendo Switch OLED"
  ],
  "ebaySite": "www.ebay.com",
  "keywordMatch": "1",
  "searchTitleDescription": false,
  "category": "0",
  "minPrice": 25,
  "maxPrice": 200,
  "buyingFormat": "",
  "condition": "",
  "freeShipping": false,
  "locatedIn": "",
  "availableTo": "",
  "sellers": "nike_store, best_deals_99",
  "sellersMode": "1",
  "listingUrls": [
    "https://www.ebay.com/sch/260010/i.html?_from=R40&_nkw=shoe&Brand=Nike&Occasion=Wedding&_dcat=93427"
  ],
  "maxPages": 3,
  "sortBy": "12",
  "proxyCountry": "US"
}
```

## Output

```json
{
  "product_title": {
    "label": "Product Title",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "original_price": {
    "label": "Original Price",
    "format": "text"
  },
  "condition": {
    "label": "Condition",
    "format": "text"
  },
  "item_attributes": {
    "label": "Item Attributes",
    "format": "text"
  },
  "seller_name": {
    "label": "Seller",
    "format": "text"
  },
  "seller_feedback_percent": {
    "label": "Seller Positive %",
    "format": "text"
  },
  "seller_feedback_count": {
    "label": "Seller Feedback Count",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "text"
  },
  "review_count": {
    "label": "Review Count",
    "format": "text"
  },
  "sold_count": {
    "label": "Sold",
    "format": "text"
  },
  "watchers": {
    "label": "Watchers",
    "format": "text"
  },
  "buying_format": {
    "label": "Buying Format",
    "format": "text"
  },
  "shipping_cost": {
    "label": "Shipping",
    "format": "text"
  },
  "free_returns": {
    "label": "Free Returns",
    "format": "boolean"
  },
  "item_location": {
    "label": "Item Location",
    "format": "text"
  },
  "authenticity_guarantee": {
    "label": "Authenticity Guarantee",
    "format": "boolean"
  },
  "card_attribute": {
    "label": "Card Attribute",
    "format": "array"
  },
  "image_url": {
    "label": "Image URL",
    "format": "image"
  },
  "product_url": {
    "label": "Product URL",
    "format": "link"
  },
  "item_id": {
    "label": "Item ID",
    "format": "text"
  },
  "marketplace": {
    "label": "Marketplace",
    "format": "text"
  },
  "page_number": {
    "label": "Page Number",
    "format": "text"
  },
  "scraped_at": {
    "label": "Scraped At",
    "format": "text"
  },
  "input_url": {
    "label": "Input URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [eBay Product Listing Scraper - Filters & 8 Markets](https://apify.com/delicious_zebu/ebay-product-listing-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/delicious_zebu/ebay-product-listing-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/delicious_zebu/ebay-product-listing-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
