Etsy Shop Scraper ๐Ÿ”“ Gets Past Etsy's Block avatar

Etsy Shop Scraper ๐Ÿ”“ Gets Past Etsy's Block

Pricing

from $24.50 / 1,000 results

Go to Apify Store
Etsy Shop Scraper ๐Ÿ”“ Gets Past Etsy's Block

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

Malek Oweis

Maintained by Community

Actor 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

FieldMeaning
title, titleLengthListing title and its length (Etsy caps โ‰ˆ 140 chars)
priceLowest price across variants
priceMaxHighest variant price (hasVariantRange = true when they differ)
currencyISO currency code
rating, reviewCountAggregate rating and number of reviews
inStock, availabilityStock status from the listing's structured data
descriptionLengthDescription length in characters
photoCountGallery photo count (best-effort)
sku, materialWhen Etsy exposes them
flagsQuality issues found (see below)
url, listingIdDirect link and Etsy listing id

Flags

  • LONG_TITLE / SHORT_TITLE โ€” over 140 or under 40 characters
  • NO_REVIEWS โ€” no reviews yet
  • LOW_RATING โ€” average rating below 4.0
  • OUT_OF_STOCK โ€” listing marked unavailable
  • THIN_DESCRIPTION โ€” description under 160 characters
  • FEW_PHOTOS โ€” fewer than 5 photos
  • NO_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 โ€” 0 for 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 price between runs
  • Sale / stock-out alerts โ€” watch avgPrice and outOfStockCount per 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.