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.
Extract data in minutes
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(); Start extracting ebay.com data in 3 steps
Get your API key
Sign up for free and get 1,000 credits instantly.
Configure your scrape
Set your target URL, output format, and stealth level.
Extract structured data
Get clean JSON back in seconds — ready for your pipeline.
Structured data endpoint
Extract structured JSON from ebay.com with a single POST request. AI-configured selectors, cached for fast repeat calls.
/fetch/ebay.com/ 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"}' 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()) 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); 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
Data you can extract
Auction & fixed-price
Extract both auction bids and buy-it-now prices, plus completed sales history for market valuation.
Category-level scraping
Process entire eBay categories with automatic pagination, extracting thousands of listings concurrently.
All eBay domains
Support for all international eBay sites with geo-targeted proxies for region-specific pricing and availability.
Why teams choose Spider for ebay.com
Free tier with 1,000 credits. No credit card required to get started.
Scale to millions of pages. Pay only for what you use.
Unlike competitors, unused credits roll over indefinitely.
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.
More E-Commerce scrapers
Extract product listings, prices, reviews, seller data, and Best Seller rankings from Amazon at scale. Anti-bot bypass with CAPTCHA solving and residential proxy rotation.
Extract Walmart product listings, pricing, inventory levels, and store availability. PerimeterX bypass with CAPTCHA solving and residential proxy rotation.
Extract product data, pricing, availability, and store pickup info from Target.
Join Zapier, Swiss Re, and 10,000+ developers
Start scraping ebay.com
Get your API key and start extracting data in minutes.