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.
- target
- ebay.com
- listing types
- Auctions & BIN
- coverage
- All 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 three steps.
Get an API key
Sign up free and a balance is credited to your account.
Configure the call
Set the target URL, output format, and rendering mode.
Get structured data
Clean JSON back in seconds, ready for your pipeline.
One endpoint for ebay.com.
Structured JSON from ebay.com with a single POST. AI-resolved selectors, cached on the first call.
/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 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.
Fields you can pull.
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 pick Spider for ebay.com.
Free balance on sign-up. No credit card required to test.
About $0.08 per 1,000 pages on a datacenter-proxy workload. No monthly minimum.
Top up once, use it whenever. Unused balance carries over forever.
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.
Amazon Scraper
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.
Walmart Scraper
Extract Walmart product listings, pricing, inventory levels, and store availability. PerimeterX bypass with CAPTCHA solving and residential proxy rotation.
Target Scraper
Extract product data, pricing, availability, and store pickup info from Target.
Start scraping ebay.com.
Grab an API key and call the endpoint above. The first request resolves the config; every request after hits cache.