# eBay Scraper - Listings, Sold Prices & Seller Leads (`scrapesage/ebay-scraper`) Actor

Scrape eBay active listings AND real sold/completed prices (comps): condition, price, shipping, bids, sold count, seller & feedback. Item detail adds brand, MPN, GTIN, ratings & photos; seller leads add feedback & location. Sold-price analytics, 10 marketplaces, monitoring mode.

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

## Pricing

from $3.00 / 1,000 listing / sold item scrapeds

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 a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.md):

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

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.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/platform/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 — Listings, Sold Prices & Seller Leads

Extract **active listings, real sold/completed prices (comps), full item details, and seller leads** from [eBay](https://www.ebay.com) — the world's largest auction & marketplace. Get **title, condition, price, shipping, bids, sold counts, location, the seller and feedback** straight off search results, plus **sold-price comps** (what items *actually* sold for, with the sold date), deep **item detail** (brand, MPN, GTIN/UPC, model, product rating, high-resolution photos, payment methods) and **B2B seller-lead profiles** with positive-feedback %, items sold, location and a lead score.

No login and no API key — eBay's own pages, parsed into clean, structured JSON. Works across **10 marketplaces** (US, UK, DE, AU, CA, FR, IT, ES, NL, IE).

### Why this eBay scraper?

| Typical scrapers | This actor |
| --- | --- |
| Active listings only | **Active *and* sold/completed** prices — real comps with sold dates |
| Title + price only | **50+ fields**: condition, shipping, bids, sold count, seller + feedback, brand, MPN, GTIN, model, rating, photos, payment methods |
| No market analytics | **Sold-price analytics** — min/max/average/median, sold-per-day & a recommended list price, per query |
| No contact/seller data | **Seller leads** — positive-feedback %, feedback score, items sold, location, member-since, Top Rated + a 0–100 lead score |
| One marketplace | **10 eBay marketplaces** with localized currency |
| Re-scrapes everything | **Monitoring mode** — only new listings / newly sold / new sellers since the last run |
| Hidden caps & start fees | **No start fee**, transparent pay-per-result |

### Use cases

- **Reselling & arbitrage** — pull *sold* comps for any product to know exactly what it sells for, the sell-through rate, and the price you should list at. The single most-requested eBay data set.
- **Price & repricing intelligence** — track active and sold prices across conditions and marketplaces to drive dynamic pricing and competitor monitoring.
- **Deal sniping** — monitor a saved search (e.g. "vintage Omega Seamaster under $1,500") and get only newly listed items each run.
- **B2B lead generation** — turn active eBay sellers into leads with feedback %, volume, location and a lead score (power sellers, stores, refurbishers, liquidators).
- **Catalog & demand research** — aggregate brand/model, condition mix, watcher and sold counts to model demand and supply for a category.

### How to use

1. [Sign up for Apify](https://console.apify.com/sign-up) — the free plan is enough to try this actor.
2. Open the **eBay Scraper**, choose a **mode**, enter keywords (or an eBay URL), set filters, and click **Start**.
3. Watch results stream into the dataset as each page is parsed.
4. **Export** as JSON, CSV, Excel, XML, or RSS — or pull results via the [Apify API](https://docs.apify.com/api/v2).

> eBay blocks datacenter IPs, so this actor uses **Apify Residential proxy by default** (already pre-filled). Keep it on for reliable results.

### Input

```json
{
  "mode": "sold",
  "searchQueries": ["nintendo switch oled", "iphone 15 pro 256gb"],
  "marketplace": "US",
  "condition": "used",
  "priceMin": 50,
  "priceMax": 400,
  "sort": "newest",
  "computeAnalytics": true,
  "enrichItemDetails": false,
  "emitSellerLeads": false,
  "maxItems": 500,
  "monitorMode": false,
  "proxyConfiguration": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"] }
}
````

- **mode** — `search` (active listings), `sold` (real sold/completed prices), `itemDetail` (full data for item URLs), or `seller` (a seller's inventory + lead profile).
- **searchQueries** — keywords like `pokemon booster box`, `vintage rolex`, `dyson v15`. Combined with the filters below.
- **startUrls** — paste eBay URLs directly: search (`ebay.com/sch/i.html?_nkw=...`), item (`ebay.com/itm/123...`), or seller (`ebay.com/usr/<name>`).
- **marketplace / categoryId / condition / listingType / priceMin / priceMax / freeShippingOnly / sort** — narrow the results.
- **enrichItemDetails** — open each item page to add brand, MPN, GTIN, model, rating, all photos, payment methods, the seller and quantity sold/watchers.
- **emitSellerLeads** — also output one deduplicated seller-lead record per unique seller.
- **computeAnalytics** — in Sold mode, add a sold-price comps summary per query.

### Output

An **active listing** (`type: "listing"`) — sold items use `type: "sold"` and add `soldDate`:

```json
{
  "type": "listing",
  "marketplace": "US",
  "itemId": "326374503310",
  "epid": "8048191202",
  "url": "https://www.ebay.com/itm/326374503310",
  "title": "NEW Nintendo Switch OLED 64GB Neon Red Blue Joy-Con",
  "subtitle": "Nintendo Switch · Nintendo Switch (OLED Model)",
  "condition": "Brand New",
  "price": { "raw": "$319.99", "value": 319.99, "currency": "USD" },
  "buyItNow": true,
  "auction": false,
  "bestOffer": false,
  "bids": null,
  "shipping": { "raw": "Free delivery", "free": true, "cost": 0, "currency": "USD" },
  "soldQuantity": 199,
  "soldDate": null,
  "returns": "Free returns",
  "seller": { "username": "bestsellerssince1977", "url": "https://www.ebay.com/usr/bestsellerssince1977", "positiveFeedbackPercent": 99.3, "feedbackScore": 3700 },
  "image": "https://i.ebayimg.com/images/g/.../s-l500.webp",
  "listingType": "fixed_price",
  "searchQuery": "nintendo switch oled",
  "scrapedAt": "2026-06-17T06:44:56Z"
}
```

An **itemDetail** record (`type: "itemDetail"`) adds `brand`, `model`, `mpn`, `gtin13`, `color`, `availability`, `rating` (`{ value, count }`), `images` (hi-res), `paymentMethods`, `shippingDetails`, `itemSpecifics`, the `seller` and `soldQuantity`/`watchers`. A **seller** record (`type: "seller"`) carries `storeName`, `positiveFeedbackPercent`, `feedbackScore`, `itemsSold`, `followers`, `location`, `memberSince`, `topRatedSeller` and a 0–100 `leadScore`. A **priceInsights** record (`type: "priceInsights"`, Sold mode) carries `sampleSize`, `soldPrice` (`{ min, max, average, median }`), `soldDateRange`, `estimatedSoldPerDay` and `recommendedListPrice`.

Notes: enrichment fields populate only when **enrichItemDetails** is on (or in `itemDetail` mode). Empty results are reported as a successful run. The actor scrapes public marketplace data only.

### Monitoring — get only new listings

Turn on **monitorMode** and the actor remembers every id it has emitted (in a named key-value store keyed by **monitorKey**). On the next run with the same inputs it returns **only records it hasn't seen before** — new listings, newly sold items, or new sellers.

- Use a distinct **monitorKey** per saved search so different watches keep separate memory.
- It pairs with **[Apify Schedules](https://docs.apify.com/platform/schedules)**: the schedule starts the run on a cron; monitoring mode dedupes against prior runs — so a daily watch only ever surfaces fresh listings or sales.

### Automate & schedule

Run this actor on autopilot and pull results into your own stack:

- **[Apify API](https://docs.apify.com/api/v2)** — start runs, fetch datasets, manage schedules over REST.
- **[apify-client for JavaScript](https://docs.apify.com/api/client/js/)** and **[apify-client for Python](https://docs.apify.com/api/client/python/)** — official SDKs.
- **[Schedules](https://docs.apify.com/platform/schedules)** — run it on a cron to keep your data fresh.
- **[Webhooks](https://docs.apify.com/platform/integrations/webhooks)** — trigger downstream actions the moment a run finishes.

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

const client = new ApifyClient({ token: 'MY_APIFY_TOKEN' });

const run = await client.actor('scrapesage/ebay-scraper').call({
    mode: 'sold',
    searchQueries: ['nintendo switch oled'],
    condition: 'used',
    computeAnalytics: true,
    monitorMode: true,
    monitorKey: 'switch-oled-comps',
});

const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(`Got ${items.length} records`);
```

### Integrate with any app

Connect the dataset to 5,000+ apps — no code required:

- **[Make](https://docs.apify.com/platform/integrations/make)** — multi-step automation scenarios.
- **[Zapier](https://docs.apify.com/platform/integrations/zapier)** — push new records into your CRM, sheet, or repricer.
- **[Slack](https://docs.apify.com/platform/integrations/slack)** — get notified when a run finds something new.
- **[Google Drive / Sheets](https://docs.apify.com/platform/integrations/drive)** — auto-export every run to a spreadsheet.
- **[Airbyte](https://docs.apify.com/platform/integrations/airbyte)** — pipe results into your data warehouse.
- **[GitHub](https://docs.apify.com/platform/integrations/github)** — trigger runs from commits or releases.

### Use with AI assistants (MCP)

The output is clean, LLM-ready JSON. Call this actor from Claude, ChatGPT, or any agent framework through the **[Apify MCP server](https://docs.apify.com/platform/integrations/mcp)** — ask your assistant to "find sold prices for a sealed Nintendo Switch OLED on eBay and tell me the median and a good list price" and let it run this scraper for you.

### More scrapers from scrapesage

Pair eBay with other marketplace, price and lead-gen scrapers:

- [reverb-scraper](https://apify.com/scrapesage/reverb-scraper) — musical-instrument marketplace listings, prices & seller leads
- [shopify-store-scraper](https://apify.com/scrapesage/shopify-store-scraper) — Shopify storefront products, variants & prices
- [made-in-china-scraper](https://apify.com/scrapesage/made-in-china-scraper) — B2B supplier products & manufacturer leads
- [tradeindia-scraper](https://apify.com/scrapesage/tradeindia-scraper) — India B2B suppliers, manufacturers & leads
- [importyeti-scraper](https://apify.com/scrapesage/importyeti-scraper) — US import records, suppliers & B2B leads
- [craigslist-scraper](https://apify.com/scrapesage/craigslist-scraper) — classifieds listings, prices & contact leads
- [sgcarmart-used-car-scraper](https://apify.com/scrapesage/sgcarmart-used-car-scraper) — used-vehicle marketplace prices & dealer leads
- [steam-scraper](https://apify.com/scrapesage/steam-scraper) — game store prices, reviews & charts

### Tips

- For resale comps, use **mode = `sold`** with **computeAnalytics** on — you get every recent sale *and* a min/max/average/median summary with a recommended list price.
- Keep **Residential proxy** on (the default). eBay blocks datacenter IPs, so datacenter runs will return little or nothing.
- Narrow with **condition**, **priceMin/Max**, **listingType** and **categoryId** to get cleaner comps and avoid unrelated items.
- Turn on **enrichItemDetails** only when you need brand/MPN/GTIN/ratings/photos/seller — it adds one request per item.
- Use a distinct **monitorKey** per saved search so each watch keeps its own memory.

### FAQ

- **Does it need my eBay login or an API key?** No. It reads eBay's public pages — no account, cookies or developer key.
- **Can I get *sold* prices?** Yes — that's the headline feature. Use Sold mode for real completed-listing prices with the sold date, plus optional analytics.
- **Why residential proxy?** eBay returns HTTP 403 to datacenter IPs. Residential proxy (the default) is required for reliable results.
- **Which marketplaces?** US, UK, DE, AU, CA, FR, IT, ES, NL and IE — set with the **marketplace** input; prices use the local currency.
- **How do I get seller contact details?** Use **Seller** mode or **emitSellerLeads** — eBay masks email/phone, so leads carry the seller's username, feedback, items sold, location and a lead score.
- **Are there exports?** Yes — JSON, CSV, Excel, XML and RSS, plus the API and 5,000+ integrations.
- **Is this legal?** It collects publicly available marketplace and business listings only — no private personal data.

### Need help?

Open an issue on the actor's **Issues** tab, or visit the [Apify help center](https://help.apify.com/). Feature requests are welcome — this actor is actively maintained.

# Actor input Schema

## `mode` (type: `string`):

<b>Active listings</b> = items currently for sale (the default). <b>Sold / completed</b> = real sold prices (comps) — what items actually sold for, with the sold date. <b>Item detail</b> = full data for specific item URLs (brand, MPN, GTIN, ratings, all photos, seller). <b>Seller</b> = a seller's full inventory + a B2B lead profile (feedback, items sold, location).

## `searchQueries` (type: `array`):

Keywords to search on eBay, e.g. <code>nintendo switch oled</code>, <code>iphone 15 pro</code>, <code>vintage rolex</code>, <code>pokemon booster box</code>. Each is combined with the filters below. Leave empty to browse a whole category (set <b>Category ID</b>).

## `startUrls` (type: `array`):

Paste eBay URLs directly: search pages (<code>ebay.com/sch/i.html?\_nkw=...</code>), item pages (<code>ebay.com/itm/123...</code>), or seller pages (<code>ebay.com/usr/\<name></code>, <code>ebay.com/str/\<store></code>). Used in addition to the keywords above.

## `sellerNames` (type: `array`):

eBay seller usernames to scrape in <b>Seller</b> mode, e.g. <code>musicstore\_official</code>. The actor pulls each seller's active inventory and a lead profile.

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

Which eBay site to search. Controls the domain and default currency.

## `categoryId` (type: `string`):

Optional eBay category id (<code>\_sacat</code>) to scope the search, e.g. <code>139971</code> (Video Game Consoles). Find it in any eBay search URL.

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

Filter by item condition.

## `listingType` (type: `string`):

Restrict to auctions or fixed-price (Buy It Now) listings.

## `priceMin` (type: `integer`):

Only items at or above this price (in the marketplace currency).

## `priceMax` (type: `integer`):

Only items at or below this price.

## `freeShippingOnly` (type: `boolean`):

Only return listings that ship for free.

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

How to order results. For Sold mode, "Newest" surfaces the most recently sold.

## `enrichItemDetails` (type: `boolean`):

For each listing, open its item page to add brand, model, MPN, GTIN/UPC, color, product rating, high-resolution photos, payment methods, the seller (username + feedback) and quantity sold/watchers. Adds one request per item.

## `emitSellerLeads` (type: `boolean`):

Output one deduplicated seller-lead record (type = "seller") for every unique seller found — with positive-feedback %, feedback score, items sold, location, member-since and a 0–100 lead score. (In Active/Sold modes this requires item-detail enrichment to discover sellers.)

## `computeAnalytics` (type: `boolean`):

In Sold mode, add one summary record per query with min / max / average / median sold price, the sold-date range, an estimated sold-per-day rate and a recommended list price — instant resale comps.

## `maxItems` (type: `integer`):

Maximum number of listings (or sold items) to scrape across all queries. eBay paginates up to ~240/page.

## `maxSellers` (type: `integer`):

Maximum number of seller-lead profiles to fetch (Seller mode, or when "emit seller-lead records" is on).

## `deduplicateResults` (type: `boolean`):

Skip records already emitted in this run (recommended).

## `monitorMode` (type: `boolean`):

Remember item/seller ids across runs in a named key-value store and emit ONLY records not seen before — new listings, newly sold items, or new sellers. Perfect for deal alerts and price-watching. Works with Apify Schedules.

## `monitorKey` (type: `string`):

Names the memory used by monitoring mode. Use a distinct key per saved search so different watches keep separate state.

## `maxConcurrency` (type: `integer`):

Maximum parallel requests. eBay needs residential IPs; 3–6 is a good balance of speed and reliability.

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

Proxy settings. eBay blocks datacenter IPs, so RESIDENTIAL proxy is the default and is strongly recommended.

## Actor input object example

```json
{
  "mode": "search",
  "searchQueries": [
    "nintendo switch oled"
  ],
  "marketplace": "US",
  "condition": "any",
  "listingType": "all",
  "freeShippingOnly": false,
  "sort": "best_match",
  "enrichItemDetails": false,
  "emitSellerLeads": false,
  "computeAnalytics": false,
  "maxItems": 100,
  "maxSellers": 50,
  "deduplicateResults": true,
  "monitorMode": false,
  "monitorKey": "default",
  "maxConcurrency": 4,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# Actor output Schema

## `results` (type: `string`):

All scraped records as JSON items in the default dataset.

# 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 = {
    "searchQueries": [
        "nintendo switch oled"
    ],
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapesage/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 = {
    "searchQueries": ["nintendo switch oled"],
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("scrapesage/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 '{
  "searchQueries": [
    "nintendo switch oled"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call scrapesage/ebay-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "eBay Scraper - Listings, Sold Prices & Seller Leads",
        "description": "Scrape eBay active listings AND real sold/completed prices (comps): condition, price, shipping, bids, sold count, seller & feedback. Item detail adds brand, MPN, GTIN, ratings & photos; seller leads add feedback & location. Sold-price analytics, 10 marketplaces, monitoring mode.",
        "version": "0.1",
        "x-build-id": "aePGkS9MfRLYwAx1u"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/scrapesage~ebay-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-scrapesage-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/scrapesage~ebay-scraper/runs": {
            "post": {
                "operationId": "runs-sync-scrapesage-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/scrapesage~ebay-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-scrapesage-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": {
                    "mode": {
                        "title": "What to scrape",
                        "enum": [
                            "search",
                            "sold",
                            "itemDetail",
                            "seller"
                        ],
                        "type": "string",
                        "description": "<b>Active listings</b> = items currently for sale (the default). <b>Sold / completed</b> = real sold prices (comps) — what items actually sold for, with the sold date. <b>Item detail</b> = full data for specific item URLs (brand, MPN, GTIN, ratings, all photos, seller). <b>Seller</b> = a seller's full inventory + a B2B lead profile (feedback, items sold, location).",
                        "default": "search"
                    },
                    "searchQueries": {
                        "title": "Search keywords",
                        "type": "array",
                        "description": "Keywords to search on eBay, e.g. <code>nintendo switch oled</code>, <code>iphone 15 pro</code>, <code>vintage rolex</code>, <code>pokemon booster box</code>. Each is combined with the filters below. Leave empty to browse a whole category (set <b>Category ID</b>).",
                        "items": {
                            "type": "string"
                        }
                    },
                    "startUrls": {
                        "title": "Start URLs",
                        "type": "array",
                        "description": "Paste eBay URLs directly: search pages (<code>ebay.com/sch/i.html?_nkw=...</code>), item pages (<code>ebay.com/itm/123...</code>), or seller pages (<code>ebay.com/usr/&lt;name&gt;</code>, <code>ebay.com/str/&lt;store&gt;</code>). Used in addition to the keywords above.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "sellerNames": {
                        "title": "Seller usernames (Seller mode)",
                        "type": "array",
                        "description": "eBay seller usernames to scrape in <b>Seller</b> mode, e.g. <code>musicstore_official</code>. The actor pulls each seller's active inventory and a lead profile.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "marketplace": {
                        "title": "eBay marketplace",
                        "enum": [
                            "US",
                            "UK",
                            "DE",
                            "AU",
                            "CA",
                            "FR",
                            "IT",
                            "ES",
                            "NL",
                            "IE"
                        ],
                        "type": "string",
                        "description": "Which eBay site to search. Controls the domain and default currency.",
                        "default": "US"
                    },
                    "categoryId": {
                        "title": "Category ID",
                        "type": "string",
                        "description": "Optional eBay category id (<code>_sacat</code>) to scope the search, e.g. <code>139971</code> (Video Game Consoles). Find it in any eBay search URL."
                    },
                    "condition": {
                        "title": "Condition",
                        "enum": [
                            "any",
                            "new",
                            "open_box",
                            "refurbished",
                            "used",
                            "parts"
                        ],
                        "type": "string",
                        "description": "Filter by item condition.",
                        "default": "any"
                    },
                    "listingType": {
                        "title": "Listing type",
                        "enum": [
                            "all",
                            "auction",
                            "buy_it_now"
                        ],
                        "type": "string",
                        "description": "Restrict to auctions or fixed-price (Buy It Now) listings.",
                        "default": "all"
                    },
                    "priceMin": {
                        "title": "Min price",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only items at or above this price (in the marketplace currency)."
                    },
                    "priceMax": {
                        "title": "Max price",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only items at or below this price."
                    },
                    "freeShippingOnly": {
                        "title": "Free shipping only",
                        "type": "boolean",
                        "description": "Only return listings that ship for free.",
                        "default": false
                    },
                    "sort": {
                        "title": "Sort order",
                        "enum": [
                            "best_match",
                            "newest",
                            "ending_soonest",
                            "price_asc",
                            "price_desc"
                        ],
                        "type": "string",
                        "description": "How to order results. For Sold mode, \"Newest\" surfaces the most recently sold.",
                        "default": "best_match"
                    },
                    "enrichItemDetails": {
                        "title": "Fetch full item details (brand, MPN, GTIN, ratings, all photos, seller)",
                        "type": "boolean",
                        "description": "For each listing, open its item page to add brand, model, MPN, GTIN/UPC, color, product rating, high-resolution photos, payment methods, the seller (username + feedback) and quantity sold/watchers. Adds one request per item.",
                        "default": false
                    },
                    "emitSellerLeads": {
                        "title": "Also emit seller-lead records",
                        "type": "boolean",
                        "description": "Output one deduplicated seller-lead record (type = \"seller\") for every unique seller found — with positive-feedback %, feedback score, items sold, location, member-since and a 0–100 lead score. (In Active/Sold modes this requires item-detail enrichment to discover sellers.)",
                        "default": false
                    },
                    "computeAnalytics": {
                        "title": "Compute sold-price analytics (Sold mode)",
                        "type": "boolean",
                        "description": "In Sold mode, add one summary record per query with min / max / average / median sold price, the sold-date range, an estimated sold-per-day rate and a recommended list price — instant resale comps.",
                        "default": false
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum number of listings (or sold items) to scrape across all queries. eBay paginates up to ~240/page.",
                        "default": 100
                    },
                    "maxSellers": {
                        "title": "Max seller leads",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum number of seller-lead profiles to fetch (Seller mode, or when \"emit seller-lead records\" is on).",
                        "default": 50
                    },
                    "deduplicateResults": {
                        "title": "Deduplicate within a run",
                        "type": "boolean",
                        "description": "Skip records already emitted in this run (recommended).",
                        "default": true
                    },
                    "monitorMode": {
                        "title": "Monitoring mode — only new records",
                        "type": "boolean",
                        "description": "Remember item/seller ids across runs in a named key-value store and emit ONLY records not seen before — new listings, newly sold items, or new sellers. Perfect for deal alerts and price-watching. Works with Apify Schedules.",
                        "default": false
                    },
                    "monitorKey": {
                        "title": "Monitor key",
                        "type": "string",
                        "description": "Names the memory used by monitoring mode. Use a distinct key per saved search so different watches keep separate state.",
                        "default": "default"
                    },
                    "maxConcurrency": {
                        "title": "Max concurrency",
                        "minimum": 1,
                        "maximum": 10,
                        "type": "integer",
                        "description": "Maximum parallel requests. eBay needs residential IPs; 3–6 is a good balance of speed and reliability.",
                        "default": 4
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Proxy settings. eBay blocks datacenter IPs, so RESIDENTIAL proxy is the default and is strongly recommended.",
                        "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
