Install
openclaw skills install @tonywangcn/product-price-researchResearches products, prices, sellers, and reviews across major online marketplaces and big-box retailers (Amazon, eBay, Shopify stores, Shop.app, Target, Costco, Zalando, Walmart) using the Crawlora API, returning clean JSON. Use when the user asks to find a product, compare prices or sellers, track listings, or pull marketplace/retailer reviews — instead of scraping store pages.
openclaw skills install @tonywangcn/product-price-researchLook up and compare products, prices, sellers, and reviews across Amazon, eBay, Shopify storefronts, Shop.app, Target, Costco, Zalando, and Walmart — all as normalized JSON from the Crawlora API, with no HTML scraping.
export CRAWLORA_API_KEY=sk_your_key_herex-api-key: $CRAWLORA_API_KEY against
https://api.crawlora.net/api/v1. Missing/invalid key → 401.Pick the marketplace, then the job:
/amazon/search, /ebay/search, /shopify/products,
/shop-app/search, /target/search, /costco/search, /walmart/search,
and /zalando/search (this one requires market — a Zalando country
storefront code like de, fr, com; list them via /zalando/markets)
to find candidate products by keyword./amazon/product, /ebay/item,
/shopify/products/{handle}, /shop-app/products/{id},
/target/product (tcin), /costco/product/{id}, /walmart/product/{item_id},
/zalando/product (sku+market)) for price, variants, specs./ebay/seller/...,
/shop-app/shops/{handle}) to compare offers./shop-app/products/{id}/reviews, /ebay/seller/.../feedback,
/target/reviews, /costco/product/{id}/reviews, /walmart/product/{item_id}/reviews).Full endpoint list, methods, and params: reference/endpoints.md.
# Search a marketplace (GET, key=value params):
scripts/crawlora.sh /amazon/search k="standing desk" | jq '.'
scripts/crawlora.sh /ebay/search q="mechanical keyboard" | jq '.'
scripts/crawlora.sh /shop-app/search query="running shoes" | jq '.'
scripts/crawlora.sh /target/search q="standing desk" | jq '.'
scripts/crawlora.sh /walmart/search q="standing desk" | jq '.'
scripts/crawlora.sh /zalando/search q="running shoes" market=de | jq '.'
# Product detail:
scripts/crawlora.sh /amazon/product asin=B0XXXXXXX | jq '{title,price}'
Raw curl fallback:
curl -fsS -H "x-api-key: $CRAWLORA_API_KEY" \
"https://api.crawlora.net/api/v1/amazon/search?k=laptop" | jq '.'
See reference/endpoints.md for every Amazon,
eBay, Shopify, Shop.app, Target, Costco, Zalando, and Walmart endpoint this
skill uses (method, path, params, description).
/amazon/search and /ebay/search
for the same query, collect price from each, and present the spread./ebay/seller/{seller} + /ebay/seller/{seller}/feedback
to summarize a seller's rating and recent feedback before buying./shopify/products (paginate) to list a store's
catalog with prices, then flag items above/below a threshold.2xx; free tier 2,000 credits/mo.
Key at https://crawlora.net.CRAWLORA_API_KEY only — never hardcode, query-param, or commit it.page (and count where supported) to walk listings.market (no default storefront) — resolve valid
codes via /zalando/markets if unsure.