NEW AI Studio is now available Try it now
E-Commerce Verified

eBay Scraper API

Extract auction listings, buy-it-now prices, seller ratings, bid history, and completed sales data from eBay. Reliable extraction across all eBay categories and international domains. Powered by spider-browser .

eBay's mix of auction and fixed-price listings makes it uniquely valuable for price research, collectible valuation, and market analysis. Spider extracts structured data from active listings, completed sales, and seller profiles across all eBay domains.

Get Started Documentation Free tier — no credit card
ebay.com target
Auctions & BIN listing types
All domains coverage
Quick Start

Extract data in minutes

ebay-scraper.ts
import { SpiderBrowser } from "spider-browser";

const spider = new SpiderBrowser({
  apiKey: process.env.SPIDER_API_KEY!,
});

await spider.connect();
const page = spider.page!;
await page.goto("https://www.ebay.com/b/Apple-AirPods-Pro/80077/bn_7116427158");
await page.content();

const data = await page.evaluate(`(() => {
  const items = [];
  document.querySelectorAll(".s-item").forEach(el => {
    const title = el.querySelector("h3 span, [role='heading'] span, a[href*='/itm/'] span")?.textContent?.trim();
    const price = Array.from(el.querySelectorAll("span")).find(s => /$[d,.]+/.test(s.textContent || ""))?.textContent?.trim();
    const shipping = Array.from(el.querySelectorAll("span")).find(s => /shipping|free/i.test(s.textContent || ""))?.textContent?.trim();
    const condition = el.querySelector("[class*='condition'], [class*='secondary'] span")?.textContent?.trim();
    if (title && title !== "Shop on eBay")
      items.push({ title, price, shipping, condition });
  });
  return JSON.stringify({ total: items.length, items: items.slice(0, 10) });
})()`);

console.log(JSON.parse(data));
await spider.close();
✓ ready to run | spider-browser | TypeScript
How It Works

Start extracting ebay.com data in 3 steps

01

Get your API key

Sign up for free and get 1,000 credits instantly.

02

Configure your scrape

Set your target URL, output format, and stealth level.

03

Extract structured data

Get clean JSON back in seconds — ready for your pipeline.

Fetch API

Structured data endpoint

Extract structured JSON from ebay.com with a single POST request. AI-configured selectors, cached for fast repeat calls.

POST /fetch/ebay.com/
Listing titlePrice / bidConditionSeller nameSeller ratingShipping cost
curl
curl -X POST https://api.spider.cloud/fetch/ebay.com/ \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"return_format": "json"}'
Python
import requests

resp = requests.post(
    "https://api.spider.cloud/fetch/ebay.com/",
    headers={
        "Authorization": "Bearer YOUR_API_KEY",
        "Content-Type": "application/json",
    },
    json={"return_format": "json"},
)
print(resp.json())
Node.js
const resp = await fetch("https://api.spider.cloud/fetch/ebay.com/", {
  method: "POST",
  headers: {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json",
  },
  body: JSON.stringify({ return_format: "json" }),
});
const data = await resp.json();
console.log(data);
Use Cases

What people build with ebay.com data

Price Research

Analyze completed sales and active listings to determine fair market value for products, collectibles, and used goods.

Arbitrage Detection

Find price discrepancies between eBay and other marketplaces to identify profitable reselling opportunities.

Seller Monitoring

Track competitor seller pricing, inventory changes, and feedback scores to optimize your eBay selling strategy.

Market Analysis

Study listing volumes, average selling prices, and sell-through rates across eBay categories over time.

Start extracting ebay.com data today

1,000 free credits — no credit card required

Extraction

Data you can extract

Listing titlePrice / bidConditionSeller nameSeller ratingShipping costTime leftItem number
Data

Auction & fixed-price

Extract both auction bids and buy-it-now prices, plus completed sales history for market valuation.

Scale

Category-level scraping

Process entire eBay categories with automatic pagination, extracting thousands of listings concurrently.

Global

All eBay domains

Support for all international eBay sites with geo-targeted proxies for region-specific pricing and availability.

Why Spider

Why teams choose Spider for ebay.com

$0 to start

Free tier with 1,000 credits. No credit card required to get started.

No rate limits

Scale to millions of pages. Pay only for what you use.

Credits never expire

Unlike competitors, unused credits roll over indefinitely.

FAQ

Common questions about scraping ebay.com

Can I scrape eBay completed/sold listings?

Yes. Spider can access eBay's completed listings filter to extract historical sale prices, dates, and buyer activity.

Does Spider work with international eBay sites?

Yes. Spider supports ebay.com, ebay.co.uk, ebay.de, ebay.com.au, and all other eBay regional domains.

What eBay data can I extract?

Listing titles, prices, bid counts, condition, seller names, ratings, shipping costs, item numbers, and time remaining on auctions.

Can I scrape eBay search results?

Yes. Spider renders eBay search pages and extracts all listing results including prices, images, and seller info.

Related

More E-Commerce scrapers

Join Zapier, Swiss Re, and 10,000+ developers

Start scraping ebay.com

Get your API key and start extracting data in minutes.