Resources
5Install
npx skillscat add imoonkey/openweb/src-sites-etsy Install via the SkillsCat registry.
SKILL.md
Etsy
Overview
Handmade and vintage marketplace — search listings, view details, shop profiles, and reviews.
Workflows
Search and view listing
searchListings(query)→listingId,shopNamegetListingDetail(listingId)→ title, price, description, photos, seller
Read listing reviews
searchListings(query)→listingIdgetReviews(listingId)→ averageRating, reviews[]
Browse a shop
searchListings(query)→shopNamegetShop(shopName)→ rating, sales, location, owner
Operations
| Operation | Intent | Key Input | Key Output | Notes |
|---|---|---|---|---|
| searchListings | search items by keyword | query | listingId, title, price, shopName, rating | entry point |
| getListingDetail | full listing info | listingId ← searchListings | title, price, description, photos, shopName, material | |
| getReviews | listing reviews | listingId ← searchListings | averageRating, totalReviews, reviews[] | LD+JSON provides ~4 recent reviews |
| getShop | shop profile | shopName ← searchListings | name, location, rating, sales, owner, activeListings |
Quick Start
# Search for handmade pottery
openweb etsy exec searchListings '{"query":"handmade pottery"}'
# Get listing details
openweb etsy exec getListingDetail '{"listingId":"168685596"}'
# Get reviews for a listing
openweb etsy exec getReviews '{"listingId":"168685596"}'
# Get shop profile
openweb etsy exec getShop '{"shopName":"nealpottery"}'