Skip to main content New gottem — one API for every web scraping vendor.
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. Built on 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 Docs
target
ebay.com
listing types
Auctions & BIN
coverage
All domains
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 three steps.

01

Get an API key

Sign up free and a balance is credited to your account.

02

Configure the call

Set the target URL, output format, and rendering mode.

03

Get structured data

Clean JSON back in seconds, ready for your pipeline.

Fetch API

One endpoint for ebay.com.

Structured JSON from ebay.com with a single POST. AI-resolved selectors, cached on the first call.

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 teams 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.

Extraction

Fields you can pull.

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 pick Spider for ebay.com.

Pricing
$0 to start

Free balance on sign-up. No credit card required to test.

Scale
Pay per page

About $0.08 per 1,000 pages on a datacenter-proxy workload. No monthly minimum.

Balance
Never expires

Top up once, use it whenever. Unused balance carries over forever.

Common questions

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.

Start

Start scraping ebay.com.

Grab an API key and call the endpoint above. The first request resolves the config; every request after hits cache.