Etsy product detail scraper: given an Etsy listing URL, returns full product detail including listingId, title, priceCurrent, priceOriginal, currency, images (all), description, shopName, shopUrl, rating, reviewCount, favorites, inCartCount, variations (with per-option price ranges), highlights, listedDate, relatedTags. Use when user mentions Etsy product, Etsy listing detail, Etsy item info, Etsy product page, scrape Etsy listing, extract Etsy product data, Etsy price and variations, Etsy product images, Etsy product description, Etsy shop from listing, Etsy favorites count, Etsy sale count, Etsy variations extraction, Etsy listing metadata, single Etsy product scrape, bulk enrich Etsy listing URLs, Etsy product details export. Also applies to competitor product monitoring, price and variation tracking on a specific listing, favorites/wishlist popularity tracking, description mining for SEO analysis, and any per-listing enrichment task.
npx skills add https://github.com/browser-act/skills --skill etsy-product-detail
> Input an Etsy listing URL → output full product detail including price, variations, images, shop, rating, favorites, and description.
All process output to user (progress updates, process notifications) follows the user's language.
Extract complete detail data from a single Etsy listing page.
https://www.etsy.com/listing/{listing-id}/{slug} (or navigate to it during execution)https://www.etsy.com/ first, then to the listing URLIf browser-act has been confirmed available in the current session → skip this step.
Invoke browser-act via Skill tool to load usage. If installation or configuration issues arise, follow its guidance to resolve then retry.
If a fresh browser session was just created:
navigate https://www.etsy.com/ → wait stablenavigate {listing URL} → wait stableOn blocked by anti-bot verification page errors, switch to a stealth browser with a different fingerprint / proxy and retry.
> This Skill's operational boundary = what the user can manually do in their browser. It only reads data already displayed to the user on the page, never bypassing authentication or access controls. Its role is equivalent to copy-pasting on the user's behalf — the data is already on screen, automation merely saves time. JS code is encapsulated in Python files under the scripts/ directory, invoked via eval "$(python scripts/xxx.py {params})". $(...) is bash syntax; it is recommended to use the bash tool for execution.
Prerequisite: current page is an Etsy listing page (https://www.etsy.com/listing/{listing-id}/...) after wait stable.
Extract (description included): eval "$(python scripts/extract-detail.py)"
Extract (skip description text to reduce output size): eval "$(python scripts/extract-detail.py --include-description false)"
Parameters:
--include-description: true (default) to include full description text; false to omit and return description: nullOutput example:
{
"error": false,
"url": "https://www.etsy.com/listing/870439619/personalized-handmade-leather-mens", // canonical URL
"listingId": "870439619", // Etsy listing id
"title": "Handmade Personalized Men's Full Grain Leather Wallet…", // full product title
"priceCurrent": "Price:$23.26+", // current display price (raw text as shown; may include '+' for variation min)
"priceOriginal": null, // original / crossed-out price, null when no discount
"currency": "$", // currency symbol, null if not detected
"imageCount": 50, // total unique image URLs discovered on the page (includes user-uploaded review photos)
"images": [ // ordered list of image URLs (main product images first, then review photos)
"https://i.etsystatic.com/22700950/r/il/…/il_fullxfull.….jpg"
],
"description": "** Handwriting Engraved Leather Wallet for Men … **", // full description text; null when --include-description=false
"shopName": "CaglarCreations", // shop / seller display name
"shopUrl": "https://www.etsy.com/shop/CaglarCreations", // shop URL, tracking params stripped
"rating": 4.9, // average star rating (numeric)
"reviewCount": "7.8k", // review count as displayed by Etsy (may include k/M suffix)
"favorites": 27013, // favorites count (integer), null when not present
"inCartCount": null, // count of active shoppers with item in cart, null when not present
"variations": [ // ordered variation groups (e.g. color, size, engraving)
{
"label": "Engraving Options", // variation group label
"options": [
{
"value": "4124115439", // Etsy option id
"text": "NO PERSONALIZATION", // option display name
"priceRange": "$23.26 - $38.76" // per-option price range if shown, null otherwise
}
]
}
],
"highlights": [], // seller-declared highlight bullets (materials, dimensions, etc.); empty when not shown
"listedDate": "Jul 8, 2026", // date extracted from 'Listed on ...' text; null when not present
"relatedTags": [ // links to related Etsy search / market pages surfaced on the listing
{"text": "Personalized Wedding Scroll for Sale", "url": "https://www.etsy.com/market/personalized_wedding_scroll"}
]
}
Error handling:
{"error": true, "message": "blocked by anti-bot verification page"} — DataDome interstitial; retry warm-up{"error": true, "message": "not a listing page"} — URL does not match /listing/{id}/...; check input URLnull (e.g. inCartCount, listedDate) is normal — those elements are not always renderedresult.error === false && result.listingId && result.title && result.imageCount >= 1 && (result.priceCurrent !== null)
/ firstreviewCount returned as displayed text (e.g. 7.8k) rather than an exact integer, matching what Etsy shows on the pageinCartCount is only shown for listings that exceed Etsy's threshold ("N people have this in their cart"); most listings return nullhighlights appear on some categories only; when absent the field returns []relatedTags may include tangentially-related Etsy market links that were surfaced in the page's link soup; treat as informational, not curated related-searchdescription may include Unicode formatting characters and inline URLs; consumer code should sanitize if needed/il/…/il_fullxfull. are the seller's own images--include-description false to shrink per-record output when descriptions are not needed downstreamresults/{listingId}.json immediately; on failure resume from the missing listingPath: {working-directory}/browser-act-skill-forge-memories/etsy-scraper-etsy-product-detail.memory.md (working directory is determined by the Agent running the Skill, typically the project root or current working directory)
Before execution: If the file exists, read it first — it records unexpected situations encountered during past executions (e.g., a strategy has become ineffective); adjust strategy order accordingly.
After execution: If an unexpected situation is encountered (strategy became ineffective, page redesigned, anti-scraping upgraded, better path discovered), append a line:
{YYYY-MM-DD}: {what happened} → {conclusion}
Normal execution does not write to the file. Do not record what listings were used or how many results were returned — those are task outputs, not experience.
Universal AI-powered web scraper for any platform. Scrape data from Instagram, Facebook, TikTok, YouTube, LinkedIn, X/Twitter, Google Maps, Google Search, Google Trends, Reddit, Airbnb, Yelp, and 15+ more platforms. Use for lead generation, brand monitoring, competitor analysis, influencer discovery, trend research, content analytics, audience analysis, review analysis, SEO intelligence, recruitment, or any data extraction task.
> XML sitemap audit — find and fix the sitemap problems that quietly waste crawl budget and slow indexing. Discovers the sitemap (robots.txt, /sitemap.xml, sitemap index), validates structure and size limits, and cross-checks the URLs URLs that shouldn't be in a sitemap, plus indexable pages that are missing from it. Reviews lastmod accuracy, sitemap-index organization, and robots.txt reference. Use this skill whenever the user asks about sitemaps, sitemap errors in Search Console, "sitemap couldn't fetch / has errors", crawl budget, pages "sitemap.xml", "XML sitemap", "sitemap errors", "sitemap audit", "couldn't fetch sitemap", "crawl budget", "pages not indexed sitemap", "sitemap index", "lastmod", "robots.txt sitemap", or any sitemap/crawl-coverage question. For a full-site SEO audit use /seo-analysis; for broken links use /broken-link-checker.
| Extract and normalize pricing tiers from any SaaS, API, cloud, or LLM vendor's pricing page. Use this skill whenever the user says "pricing for X", "how much does X cost", "pricing tiers", "cost comparison", provides a URL ending in `/pricing` or `/plans`, or asks to monitor pricing over time. Pairs well with `exportSkill` to turn a run into a cron-friendly workflow. Scrape-driven; no interact needed for typical pricing pages.
> Scrape blog posts via RSS feeds (free, no API key) with Apify fallback for JS-heavy sites. Use when you need to monitor competitor blogs, track industry content, or aggregate blog posts by keyword.
> Monitor competitor content across blogs, LinkedIn, and Twitter/X on a recurring basis. Surfaces new posts, trending topics, and content gaps you can own. Chains blog-feed-monitor, linkedin-profile-post-scraper, and twitter-mention-tracker. Use when you want a weekly digest of what competitors are publishing and which topics are generating engagement.
> Find leads by scraping engagers from a competitor's top LinkedIn posts. Given one or more company page URLs, scrapes recent posts, ranks by engagement, selects the top N, extracts all reactors and commenters, ICP-classifies, and exports CSV. Use when someone wants to "find leads engaging with competitor content" or "scrape people who interact with [company]'s LinkedIn posts".
> Track what key opinion leaders (KOLs) in your space are posting on LinkedIn and Twitter/X. Surfaces trending narratives, high-engagement topics, and early signals of emerging conversations before they peak. Chains linkedin-profile-post-scraper and twitter-mention-tracker. Use when a marketing team wants to ride trends rather than create them from scratch, or when a founder wants to know which topics are resonating with their audience.
Scrape competitor ads from Meta's Ad Library (Facebook, Instagram, Messenger, Threads, WhatsApp). Search by company name, Facebook Page URL, or keyword. Returns ad creatives, spend estimates, reach, impressions, and campaign details. Use for competitive ad research, messaging analysis, and creative inspiration.
Take browser-act/etsy-product-detail from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.