All scrapers
E-commerce
Etsy Scraper
etsy.com
100% Success rate
3.7s Avg response
In-house anti-bot Protection
1,000 calls Measured over
Etsy is served through a dedicated plugin endpoint rather than the generic page fetch. Give it a query and it returns the products already parsed: the title, the price and currency, the shop, an image and a clean listing URL. Sort the results, filter by price, and page through as many as you need. Prices come back in USD by default.
What you can extract
- Title and a listing URL
- Price and currency
- Shop name
- Product image
Dedicated endpoints
/marketplace/etsy-search A product search on Etsy
Etsy products for a query: a products array with title, price, currency, shop, image and a listing url. Sort, filter with min_price/max_price, and page with max_results.
How to scrape it
curl -X POST \
-H "X-ScrapeUnblocker-Key: $SU_API_KEY" \
"https://api.scrapeunblocker.com/marketplace/etsy-search?query=handmade%20jewelry"import requests
resp = requests.post(
"https://api.scrapeunblocker.com/marketplace/etsy-search",
headers={"X-ScrapeUnblocker-Key": SU_API_KEY},
params={"query": "handmade jewelry"},
)
print(resp.text)import { ScrapeUnblockerClient } from 'scrapeunblocker';
const su = new ScrapeUnblockerClient({ apiKey: process.env.SU_API_KEY });
const data = await su.etsySearch('handmade jewelry', {
sort: 'price_asc',
});
console.log(results); Requests are POST and take their parameters in the query string. Browser rendering always happens - there is no flag to enable.
Related scrapers
Start scraping this site today
Free tier included. No credit card required to test it.