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.
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.
curl -X POST https://api.spider.cloud/scrape \
-H "Content-Type: application/json" \
-d '{"url": "https://ebay.com/", "return_format": "markdown"}' This exact call produced the response beside it. Get a key →
- Content
- 282 lines 25.6 KB markdown
- Render
- No browser plain request is enough
- Fetch time
- 461 ms one measured fetch
- This fetch cost
- $0.000751 bandwidth plus compute
Refurbished tech](https://www.ebay.com/d/homepage?templateId=template_a1e17f91-7a23-11f1-be6d-d5badbfef77a)
Smart watches](https://www.ebay.com/d/homepage?templateId=template_3bee2490-7a24-11f1-a25f-0fd5eebf7e7d)
DSLRs and more](https://www.ebay.com/d/homepage?templateId=template_d1b1e767-7a22-11f1-a25f-b30988e12f42)
Secure Purchase## Find your next ride on eBay
Great deals, wide selection, total protection.
## Your summer style edit is here
Find trending pieces, unexpected gems, and endless fashion inspo.
## Today's Deals
adidas women Grand Court 2.0 Shoes
MSI 27" Gaming Monitor 1ms 170Hz (2560x1440) QHD Rapid IPS G-Sync HDR
Dyson V15 Detect Total Clean Extra
Roborock Qrevo Pro Robot Vacuum,7000Pa,Hot Water Mop Wahshing - Certified Refurb
1800 Series 6-Piece Bed Sheet Set Soft Deep Pocket Twin King Queen Full Sheets
Samsung Galaxy S23+ 256GB S916U Unlocked - Very Good
Ninja Luxe Café Premier Series Coffee Espresso Machine, Certified Refurbished
Milwaukee 2904-20 M18 FUEL 1/2" Hammer Drill/Driver (Tool only)
Jumpstart 2025 Booster Box Foundations FDN MTG You just saw the output.
That was one page. A key runs the same call across every URL on ebay.com, with browser rendering, proxies, and concurrency. Sign up and a free balance lands on your account. No card required to test.
- Free balance on signup, no card
- Failed requests cost $0
- robots.txt respected by default
The same call, in code.
The keyless call above returns markdown. These examples add a key, so you get browser rendering, proxies, and concurrency on ebay.com.
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");
// No selectors, no schema. Spider reads the page and names the fields.
const data = await page.scrape();
console.log(data);
await spider.close(); 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 for volume? Get an API key →
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.
Spider names these from the page. The capture above came back as markdown; the same
call with return_format: "json" returns them as keys.
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.
What ebay.com costs to scrape.
The capture above cost $0.000751 to fetch. Pricing is $1 per GB of pre-transformation bandwidth plus $0.001 per CPU minute, so a page like this one lands at a fraction of a cent. Failed requests are billed at $0.
- Free balance on signup
- No card required to test
- Balance never expires
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.
You already have the call. A key raises the rate limit and turns on browser rendering, proxies, and concurrency. Balance never expires, and top-ups go through secure checkout.