Etsy Scraper
Extract handmade product listings, shop info, reviews, and pricing from Etsy marketplace. Powered by spider-browser .
Extract data in minutes
import { SpiderBrowser } from "spider-browser";
const spider = new SpiderBrowser({
apiKey: process.env.SPIDER_API_KEY!,
stealth: 2,
});
await spider.connect();
const page = spider.page!;
await page.goto("https://www.etsy.com/search?q=handmade+pottery");
await page.content();
const data = await page.evaluate(`(() => {
const items = [];
document.querySelectorAll("[data-search-results] .wt-grid__item-xs-6").forEach(el => {
const name = el.querySelector(".v2-listing-card__info h3")?.textContent?.trim();
const price = el.querySelector(".currency-value")?.textContent?.trim();
const shop = el.querySelector(".v2-listing-card__shop p")?.textContent?.trim();
if (name) items.push({ name, price, shop });
});
return JSON.stringify({ total: items.length, items: items.slice(0, 10) });
})()`);
console.log(JSON.parse(data));
await spider.close(); Data you can extract
Real-time price data
Monitor product prices, discounts, and availability changes on etsy.com.
Protection bypass
Automated CAPTCHA solving and fingerprint rotation to access product pages reliably.
Bulk extraction
Process thousands of product pages concurrently with smart retry and browser switching.
More E-Commerce scrapers
Extract product listings, prices, reviews, and seller data from Amazon at scale with anti-bot bypass.
Scrape Walmart product listings, pricing, inventory, and store availability with PerimeterX bypass.
Extract auction listings, buy-it-now prices, seller ratings, and bid history from eBay.
Start scraping etsy.com
Get your API key and start extracting data in minutes.