Install
openclaw skills install @scavio-ai/etsy-product-dataSearch 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.
openclaw skills install @scavio-ai/etsy-product-dataSearch 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.
Use this skill when the user asks to:
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
Base URL: https://api.scavio.dev. Every Etsy endpoint costs 2 credits.
| Endpoint | Credits | What it returns |
|---|---|---|
POST /api/v1/etsy/search | 2 | Listings 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/product | 2 | One 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/shop | 2 | A 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/products | 2 | A page of a shop's listings, same card shape as search (shop-grid cards carry no per-card rating) |
POST /api/v1/etsy/reviews | 2 | A shop's reviews, paginated across all its listings (~14 per page): rating, author, date, text, reviewer avatar, and the source listing |
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.
/search)| Parameter | Type | Default | Description |
|---|---|---|---|
query | string | required | Search terms (1-500 chars) |
page | integer | -- | 1-based results page |
sort | string | relevance | relevance, lowest_price, highest_price, most_recent |
min_price / max_price | number | -- | Price filter, in USD |
free_shipping | boolean | -- | Only listings that offer free shipping |
on_sale | boolean | -- | Only listings currently discounted |
/product)| Parameter | Type | Default | Description |
|---|---|---|---|
listing | string | required | Listing id or a listing URL containing /listing/<id>/ |
/shop), Shop Products (/shop/products), Reviews (/reviews)| Parameter | Type | Default | Description |
|---|---|---|---|
shop | string | required | Shop name or a shop URL like https://www.etsy.com/shop/StonehousePotteryOH |
page | integer | -- | 1-based page (shop/products and reviews) |
sort | string | relevance | (shop/products only) same values as search |
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"}'
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.
product for one listing's reviews, reviews for the whole shop's reviews.search and shop/products) carry no per-card rating; get the aggregate rating from product or shop.sort value; unrecognised values are rejected before the request runs.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.on_sale / free_shipping.SCAVIO_API_KEY is not set, prompt the user to export it before continuing.