Data & analysis

Scavio Etsy

Try it

Search Etsy listings, pull one listing with its variations and reviews, open a shop's profile and catalogue, and page through a shop's reviews. 5 endpoints, 2 credits each, structured JSON.

What it does

Search Etsy listings, pull one listing with its variations and reviews, open a shop's profile and catalogue, and page through a shop's reviews. 5 endpoints, 2 credits each, structured JSON.

The skill document

Etsy via Scavio

Search Etsy listings, pull one listing in full with its variations and reviews, open a shop's profile and catalogue, and page through a shop's reviews. All endpoints return structured JSON.

When to trigger

Use this skill when the user asks to:

  • Search Etsy for a product, with price, on-sale and free-shipping filters, sorted by relevance, price or newest
  • Pull one listing in full - description, price, availability, material, category path, ship-from, all images, buyer-selectable variations, aggregate rating and its first page of reviews
  • Read a shop's profile: location, year opened, sales and admirer counts, rating, review and listing counts, star-seller flag, announcement and sections
  • List a shop's own listings
  • Page through a shop's reviews across all its listings
  • Do handmade/craft market research, competitor shop analysis or price comparison on Etsy

Setup

Get a free API key at scavio.dev (50 free credits to get started, no card required):

export SCAVIO_API_KEY=sk_live_your_key

Every request is a POST with a JSON body and:

Authorization: Bearer $SCAVIO_API_KEY

Endpoints

Base URL: https://api.scavio.dev. Every Etsy endpoint costs 2 credits.

EndpointCreditsWhat it returns
POST /api/v1/etsy/search2Listings for a query: title, price with discounts, image, shop, per-listing rating and review count, ad and free-shipping flags. Paginated by page
POST /api/v1/etsy/product2One listing in full: description, price, availability, material, category path, ship-from, all images, buyer-selectable variations, aggregate rating, first page of reviews, and the shop
POST /api/v1/etsy/shop2A shop's profile and stats: headline, location, logo/banner, year opened, sales and admirer counts, rating, review and listing counts, star-seller flag, announcement, about and sections
POST /api/v1/etsy/shop/products2A page of a shop's listings, same card shape as search (shop-grid cards carry no per-card rating)
POST /api/v1/etsy/reviews2A shop's reviews, paginated across all its listings (~14 per page): rating, author, date, text, reviewer avatar, and the source listing

Which endpoint has the reviews

A listing's own first-page reviews ride the product endpoint. The reviews endpoint returns a shop's reviews pooled across all its listings. Use product for one item, reviews for the whole shop.

Parameters

ParameterTypeDefaultDescription
querystringrequiredSearch terms (1-500 chars)
pageinteger--1-based results page
sortstringrelevancerelevance, lowest_price, highest_price, most_recent
min_price / max_pricenumber--Price filter, in USD
free_shippingboolean--Only listings that offer free shipping
on_saleboolean--Only listings currently discounted

Product (/product)

ParameterTypeDefaultDescription
listingstringrequiredListing id or a listing URL containing /listing//

Shop (/shop), Shop Products (/shop/products), Reviews (/reviews)

ParameterTypeDefaultDescription
shopstringrequiredShop name or a shop URL like https://www.etsy.com/shop/StonehousePotteryOH
pageinteger--1-based page (shop/products and reviews)
sortstringrelevance(shop/products only) same values as search

Examples

import requests

BASE = "https://api.scavio.dev"
# Your key from https://scavio.dev. Load it from your environment or secret
# store in real code - keep it out of source control.
API_KEY = "sk_your_key_here"
HEADERS = {"Authorization": f"Bearer {API_KEY}"}

# 1. Search, newest first, on sale only
found = requests.post(f"{BASE}/api/v1/etsy/search", headers=HEADERS,
    json={"query": "ceramic mug", "sort": "most_recent", "on_sale": True,
          "max_price": 40}).json()

row = found["data"]["items"][0]
listing_id, shop = row["listing_id"], row["shop"]

# 2. One listing in full - variations, aggregate rating, first reviews
listing = requests.post(f"{BASE}/api/v1/etsy/product", headers=HEADERS,
    json={"listing": listing_id}).json()

# 3. The shop's profile, then its reviews
shop_profile = requests.post(f"{BASE}/api/v1/etsy/shop", headers=HEADERS,
    json={"shop": shop}).json()
reviews = requests.post(f"{BASE}/api/v1/etsy/reviews", headers=HEADERS,
    json={"shop": shop, "page": 1}).json()

curl:

curl -s https://api.scavio.dev/api/v1/etsy/search \
  -H "Authorization: Bearer $SCAVIO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"linen apron","sort":"lowest_price"}'

Response shape

Every response uses the envelope { data, response_time, credits_used, credits_remaining }. data carries the listings/shop/reviews payload plus count on the paginated endpoints.

Guardrails

  • Every Etsy call is 2 credits, including one that comes back empty.
  • Use product for one listing's reviews, reviews for the whole shop's reviews.
  • Shop-grid cards (search and shop/products) carry no per-card rating; get the aggregate rating from product or shop.
  • Never invent a sort value; unrecognised values are rejected before the request runs.
  • Never fabricate prices, ratings, shop details or review text. Only return what the API returned.
  • Review text is written by real buyers. Summarise; do not build profiles of individuals.

Failure handling

  • 400 means an invalid or missing parameter. Fix and retry.
  • 401 means the API key is invalid or missing. Check SCAVIO_API_KEY.
  • 404 means the listing or shop could not be resolved.
  • 429 means rate or usage limit exceeded. Wait before retrying. See rate limits.
  • 502 / 503 mean the source is temporarily unavailable - wait a few seconds and retry.
  • An empty result set is usually the filters - widen the price range or drop on_sale / free_shipping.
  • If SCAVIO_API_KEY is not set, prompt the user to export it before continuing.

Related skills

Etsy keyword search scraper: given a search keyword and optional page number, returns paginated product listings with listingId, shopId, title, url, image, salePrice, originalPrice, currency, rating, reviewCount, shopName, isAd, freeShipping, badge from etsy.com search results. Use when user mention

Etsy category page scraper: given an Etsy category URL (e.g. https://www.etsy.com/c/jewelry) and optional page number, returns paginated product listings with listingId, shopId, title, url, image, salePrice, originalPrice, currency, rating, reviewCount, shopName, isAd, freeShipping, badge from categ

Search live or SOLD eBay listings, read a listing in full, and look up a seller's profile card as structured JSON. 3 endpoints, 1 credit each. Sold-listing search is the price-research feature eBay itself hides.

查询单个 Etsy Listing 的公共商品详情。输入 Etsy 商品直链,返回商品标题与描述、价格区间、币种、主图与图片集、变体、库存上限、类目、发货地与预计送达、店铺资料、评论数量、评分及买家反馈标签等数据。当用户提到 Etsy 商品详情、Etsy listing 解析、Etsy 商品链接查询、竞品 Listing 拆解、价格图片提取、店铺与评论概况、Etsy product details、Etsy listing lookup 时触发。即使用户未明确说“商品详情”,只要提供带数字 listing ID 的 Etsy 商品直链并希望读取当前公开商品页信息,也应触发此技能。

1 installs

Search AliExpress, browse a category, pull one product with every SKU variant, read translated buyer reviews, and open a seller's storefront and catalogue. 6 endpoints, 1 credit each, structured JSON.

Etsy shop optimization assistant. Listing SEO, tag selection, pricing strategy, competitor analysis, and shop audits. Encodes Etsy-specific domain expertise that generic AI can't replicate.

2 installs