Etsy Shop Scraper ๐ Gets Past Etsy's Block
Pricing
from $24.50 / 1,000 results
Etsy Shop Scraper ๐ Gets Past Etsy's Block
Etsy blocks scrapers hard โ most Etsy Actors return an empty page. This one gets through every run via a managed unblocker with rendering, reading listings live. Per listing: title, price + full variant range, currency, rating, reviews, stock, photos, description size, quality flags, shop summary.
Pricing
from $24.50 / 1,000 results
Rating
0.0
(0)
Developer
Malek Oweis
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
11 hours ago
Last modified
Categories
Share
Etsy blocks scrapers hard. Point most Etsy Actors at a shop and you get an empty page back โ Etsy's bot protection (Akamai) never lets them load a real listing.
This one gets through, every run. Every request is routed through a managed unblocker with full page rendering, so it reads live listings exactly as a real browser would โ then returns them as a clean table: title, price and full variant price range, currency, rating, review count, stock, photo count, description length, per-listing quality flags, and a per-shop price summary. No proxy or captcha setup from you.
What you get per listing
| Field | Meaning |
|---|---|
title, titleLength | Listing title and its length (Etsy caps โ 140 chars) |
price | Lowest price across variants |
priceMax | Highest variant price (hasVariantRange = true when they differ) |
currency | ISO currency code |
rating, reviewCount | Aggregate rating and number of reviews |
inStock, availability | Stock status from the listing's structured data |
descriptionLength | Description length in characters |
photoCount | Gallery photo count (best-effort) |
sku, material | When Etsy exposes them |
flags | Quality issues found (see below) |
url, listingId | Direct link and Etsy listing id |
Flags
LONG_TITLE/SHORT_TITLEโ over 140 or under 40 charactersNO_REVIEWSโ no reviews yetLOW_RATINGโ average rating below 4.0OUT_OF_STOCKโ listing marked unavailableTHIN_DESCRIPTIONโ description under 160 charactersFEW_PHOTOSโ fewer than 5 photosNO_PRICEโ no price could be read
Input
{"shopUrls": ["https://www.etsy.com/shop/BeadBoat1", "AnotherShopName"],"maxListingsPerShop": 100,"concurrency": 4}
shopUrlsโ full shop URL or bare shop name.maxListingsPerShopโ0for no limit.concurrencyโ parallel listing fetches, 1โ10. Lower is gentler and cheaper.proxyConfigurationโ defaults to Apify Unblocker (US), which is required. Don't change it unless you know what you're doing.
Output
One dataset row per listing, plus a SHOP_SUMMARY key-value record per shop with
listingsScraped, listingsWithFlags, outOfStockCount, noReviewCount,
avgPrice, minPrice, maxPrice, avgRating.
Example row
{"shop": "BeadBoat1","listingId": "1259846915","url": "https://www.etsy.com/listing/1259846915/natural-bloodstone-bracelet-smooth-round","title": "Natural Bloodstone Bracelet Smooth Round 10mm and 12mm - Handmade in USA","titleLength": 71,"price": 4.99,"priceMax": 12.5,"currency": "USD","hasVariantRange": true,"inStock": true,"availability": "InStock","rating": 5.0,"reviewCount": 5,"descriptionLength": 799,"photoCount": 6,"sku": "1259846915","material": "Gemstone","flags": []}
Use cases
- Competitor price monitoring โ schedule daily, diff
pricebetween runs - Sale / stock-out alerts โ watch
avgPriceandoutOfStockCountper shop - New-listing alerts โ watch for new
listingIds - Your own shop QA โ find listings with thin descriptions, few photos, no reviews
- Niche market research โ pull a set of shops' full catalogs and prices into a sheet
FAQ
Why do other Etsy scrapers return an empty page? Etsy runs Akamai Bot Manager. A normal headless browser or HTTP request gets a 403 "please enable JavaScript" page โ no listing data. This Actor routes every request through a managed unblocker that renders the page server-side, so it reads the real listing every time.
Do I need to configure a proxy or solve captchas? No. The unblocker is the default and handles everything. Just give it shop URLs.
How fast is it? Why does a run take a few minutes?
Each page is rendered server-side by the unblocker, which takes a few seconds per
listing. Raise concurrency (up to 10) to fetch more in parallel. A 100-listing shop
typically finishes in 3โ8 minutes.
How current is the data? Live. Every listing is fetched fresh at run time โ no cache.
Is this allowed? It reads only public Etsy shop and listing pages โ the same pages any visitor sees. It never logs in and never touches buyer, message or order data. Respect Etsy's terms and your local laws.
Why no keyword tags in the output? Etsy removed public keyword tags from listing pages years ago, so they can't be read from a listing. Everything Etsy still exposes โ price, variant range, rating, reviews, stock, photos, description โ is included.
A title came back in another language. Etsy localises some titles by region. Requests are made from a US endpoint, but an occasional non-English title can still slip through.
Use it from an AI agent
This Actor is available as a tool over Apify's MCP server, so an AI agent (Claude, ChatGPT, or any MCP client) can call it directly to pull live Etsy listing and price data into a conversation or workflow.
Notes
Reads only public Etsy shop and listing pages โ no login, no private data.