# Scrape eBay Listings from a Search URL

**Use case:** 

Already built an eBay search on the site? Paste that search results page URL and scrape every listing, even filters not exposed as inputs. This demo scrapes an eBay mechanical keyboard search and returns product_title, price, currency, condition, seller_name, sold_count, shipping_cost, item_location, image_url, product_url and item_id. Add more listingUrls to scrape several searches at once.

## Input

```json
{
  "keywords": [
    "nike air max",
    "adidas ultraboost"
  ],
  "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/i.html?_nkw=mechanical+keyboard"
  ],
  "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`).
