# eBay Scraper — Active & Sold Listings, Prices & Sellers (`hipersoft/ebay-scraper`) Actor

Scrape eBay search results — active AND sold/completed listings — with title, price, condition, listing type, shipping, seller and item link. Filter by condition, price range and marketplace (US, UK, DE…). Sold-listing data is ideal for price and market research. No login, no API key.

- **URL**: https://apify.com/hipersoft/ebay-scraper.md
- **Developed by:** [hiper soft](https://apify.com/hipersoft) (community)
- **Categories:** E-commerce
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.002 / item scraped

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js/docs.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## eBay Scraper — Product Listings, Prices & Sellers

Scrape eBay search results at scale — title, price, condition, listing type, shipping, seller and a direct item link per listing. Filter by condition, price range, sort and marketplace (US, UK, DE and more). Perfect for **price monitoring, product sourcing, dropshipping research and competitor tracking**. No account, no API key.

### Features

- 🛒 **Rich listing data** — title, price, currency, condition, listing type (Buy It Now / auction / Best Offer), shipping, item ID and link
- 🎚️ **Filters** — condition (new/used), min/max price, and sort (price, newest, ending soonest)
- 🌍 **8 marketplaces** — US, UK, Germany, France, Italy, Spain, Canada, Australia (prices in each site's currency)
- 📊 **Bulk & paginated** — thousands of listings per search, de-duplicated
- 🛡️ **Reliable** — warmed browser session + residential proxy clears eBay's bot protection
- ⚡ **Clean JSON** — ready for spreadsheets, dashboards or your pricing pipeline

### What you get

One record per listing:

```json
{
  "query": "nintendo switch",
  "marketplace": "US",
  "itemId": "204512345678",
  "title": "Nintendo Switch OLED Console — White",
  "price": 289.99,
  "currency": "$",
  "condition": "Brand New",
  "listingType": "Buy It Now",
  "shipping": "Free shipping",
  "url": "https://www.ebay.com/itm/204512345678",
  "image": "https://i.ebayimg.com/…"
}
````

### Input

```json
{
  "searches": ["nintendo switch", "vintage rolex"],
  "condition": "used",
  "priceMax": "500",
  "marketplace": "US",
  "maxItemsPerSearch": 200
}
```

| Field | Description |
|-------|-------------|
| `searches` | Keywords to search. One per line. |
| `condition` | `new`, `used` or any. |
| `priceMin` / `priceMax` | Price range filter. |
| `sort` | Best match, price, newest, ending soonest. |
| `marketplace` | eBay site (US, UK, DE, …). |
| `maxItemsPerSearch` | Max listings per term. |

### Use cases

- **Price monitoring** — track current prices for products across a category
- **Product sourcing & dropshipping** — find in-demand items and price points
- **Competitor tracking** — watch what sellers list and at what prices
- **Market research** — aggregate live inventory and pricing at scale

### FAQ

**Do I need an eBay API key?**
No. This Actor reads eBay's public search pages directly — no account, developer key or OAuth required.

**How many listings can I get per run?**
Thousands — up to `maxItemsPerSearch` per keyword across paginated results, and you can pass many keywords in one run.

**Which eBay sites are supported?**
US, UK, Germany, France, Italy, Spain, Canada and Australia. Prices come back in each marketplace's currency.

**Can I filter by condition or price?**
Yes — filter to new or used items and set a min/max price, plus sort by price, newest or ending soonest.

**What format is the output?**
Clean structured JSON — one record per listing — exportable to JSON, CSV or Excel.

### Related Actors

- [Amazon Product Scraper](https://apify.com/hipersoft/amazon-product-scraper) — search & product data from Amazon
- [Shopify Product Scraper](https://apify.com/hipersoft/shopify-product-scraper) — full product catalogs from any Shopify store
- [Vinted Scraper](https://apify.com/hipersoft/vinted-scraper) — second-hand fashion listings and prices
- [Google Maps Scraper](https://apify.com/hipersoft/google-maps-scraper) — local business data and leads

### Notes

Collects only publicly available eBay search data; no login or private data. Uses a real browser session and residential proxies to load pages reliably. This is an independent tool and is not affiliated with or endorsed by eBay.

# Actor input Schema

## `searches` (type: `array`):

Keywords to search on eBay. One per line.

## `condition` (type: `string`):

Filter by item condition.

## `priceMin` (type: `string`):

Minimum price filter (marketplace currency).

## `priceMax` (type: `string`):

Maximum price filter.

## `sort` (type: `string`):

Result ordering.

## `marketplace` (type: `string`):

eBay site to search.

## `maxItemsPerSearch` (type: `integer`):

Maximum listings to scrape per search term.

## `proxyConfiguration` (type: `object`):

Proxy — residential recommended (eBay blocks datacenter IPs).

## Actor input object example

```json
{
  "searches": [
    "nintendo switch"
  ],
  "condition": "",
  "sort": "best_match",
  "marketplace": "US",
  "maxItemsPerSearch": 120,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "searches": [
        "nintendo switch"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("hipersoft/ebay-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "searches": ["nintendo switch"] }

# Run the Actor and wait for it to finish
run = client.actor("hipersoft/ebay-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "searches": [
    "nintendo switch"
  ]
}' |
apify call hipersoft/ebay-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=hipersoft/ebay-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "eBay Scraper — Active & Sold Listings, Prices & Sellers",
        "description": "Scrape eBay search results — active AND sold/completed listings — with title, price, condition, listing type, shipping, seller and item link. Filter by condition, price range and marketplace (US, UK, DE…). Sold-listing data is ideal for price and market research. No login, no API key.",
        "version": "1.0",
        "x-build-id": "H0Ssmj5HFWJMhu3x7"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/hipersoft~ebay-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-hipersoft-ebay-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/hipersoft~ebay-scraper/runs": {
            "post": {
                "operationId": "runs-sync-hipersoft-ebay-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/hipersoft~ebay-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-hipersoft-ebay-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "searches": {
                        "title": "Search terms",
                        "type": "array",
                        "description": "Keywords to search on eBay. One per line.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "condition": {
                        "title": "Condition",
                        "enum": [
                            "",
                            "new",
                            "used"
                        ],
                        "type": "string",
                        "description": "Filter by item condition.",
                        "default": ""
                    },
                    "priceMin": {
                        "title": "Min price",
                        "type": "string",
                        "description": "Minimum price filter (marketplace currency)."
                    },
                    "priceMax": {
                        "title": "Max price",
                        "type": "string",
                        "description": "Maximum price filter."
                    },
                    "sort": {
                        "title": "Sort by",
                        "enum": [
                            "best_match",
                            "ending_soonest",
                            "newly_listed",
                            "price_low",
                            "price_high"
                        ],
                        "type": "string",
                        "description": "Result ordering.",
                        "default": "best_match"
                    },
                    "marketplace": {
                        "title": "Marketplace",
                        "enum": [
                            "US",
                            "UK",
                            "DE",
                            "FR",
                            "IT",
                            "ES",
                            "CA",
                            "AU"
                        ],
                        "type": "string",
                        "description": "eBay site to search.",
                        "default": "US"
                    },
                    "maxItemsPerSearch": {
                        "title": "Max items per search",
                        "minimum": 1,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Maximum listings to scrape per search term.",
                        "default": 120
                    },
                    "proxyConfiguration": {
                        "title": "Proxy",
                        "type": "object",
                        "description": "Proxy — residential recommended (eBay blocks datacenter IPs).",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ]
                        }
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
