product-price-research
Researches products, prices, sellers, and reviews across 28 major online marketplaces and big-box/specialty retailers (Amazon, eBay, Shopify stores, Shop.app, Target, Costco, Walmart, Nike, Zara, Adidas, Best Buy, Home Depot, Sephora, SHEIN, IKEA, Chewy, and more) 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.Product & price research
Look up and compare products, prices, sellers, and reviews across Amazon, eBay, Shopify storefronts, Shop.app, Target, Costco, Zalando, Walmart, H&M, Kohl's, Lululemon, Macy's, Nike, Old Navy (plus Gap, Banana Republic, and Athleta under the same endpoints), Sam's Club, Ulta Beauty, Wayfair, Wish, Zappos, Zara, Adidas, Best Buy, Home Depot, Sephora, SHEIN, IKEA, and Chewy — all as normalized JSON from the Crawlora API, with no HTML scraping. Walgreens is store-locator only (no product catalog).
When to use this skill
- "What does X cost on Amazon / eBay / Target / Walmart?" or "compare prices for X across sellers/retailers."
- "Find listings for X" / "search this Shopify store" / "what's in this collection?"
- "Pull reviews / ratings for this product or seller."
- "Track this product's price / variants / availability."
- Competitive pricing, catalog, or marketplace-review research.
- "Browse category X on Wayfair / Kohl's / Sam's Club" when the retailer has no keyword search of its own.
- Apparel/beauty catalog lookups spanning Nike, Zara, H&M, Old Navy/Gap/Banana Republic/Athleta, Lululemon, Ulta Beauty, Adidas, or Sephora.
- Home-goods/electronics/pet lookups spanning Home Depot, Best Buy, IKEA, or Chewy.
- "Find the nearest Walgreens" (store locator only — no product catalog).
Setup (one-time)
- Get a free Crawlora API key (2,000 credits/mo, no card) at https://crawlora.net.
export CRAWLORA_API_KEY=sk_your_key_here- All requests:
x-api-key: $CRAWLORA_API_KEYagainsthttps://api.crawlora.net/api/v1. Missing/invalid key →401.
How it works
Pick the marketplace, then the job:
- Search / discover —
/amazon/search,/ebay/search,/shopify/products,/shop-app/search,/target/search,/costco/search,/walmart/search,/hm/search,/nike/search,/oldnavy/search(covers Old Navy, Gap, Banana Republic, and Athleta viabrand=on|gap|br|at, defaults toon),/ulta/search,/wish/search,/zappos/search,/zara/search(requiressection, a department likeWOMAN/MAN), and/zalando/search(this one requiresmarket— a Zalando country storefront code likede,fr,com; list them via/zalando/markets) to find candidate products by keyword. Kohl's, Lululemon, Macy's, Sam's Club, and Wayfair have no keyword-search endpoint — browse a category instead:/kohls/category(facets give follow-up category strings),/lululemon/categories→/lululemon/category,/samsclub/departments→/samsclub/category, and/wayfair/categories→/wayfair/category. Macy's has neither search nor category browse at all — only directproductIdlookup (below) plus/macys/suggesttypeahead./adidas/search(queryorcategory, exactly one required),/bestbuy/search(q),/homedepot/search(q),/sephora/search(query, plusbrand/filter/price_min+price_maxas a matched pair/rating_min/is_newfacets),/ikea/search(q, or an IKEA item number resolves directly), and/chewy/search(q— a strong category match like "dog food" transparently redirects to that category listing) round out search. Walgreens has no product catalog at all —/walgreens/stores(lat/lon or zip) is its only endpoint, for store lookup. - Detail — fetch a specific product (
/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),/hm/product/{product_id},/nike/product(slug+style_color),/oldnavy/product(pid+brand),/lululemon/product/{product_id},/macys/product/{productId},/samsclub/product/{id},/ulta/product/{productId},/wayfair/product/{id},/wish/product/{id},/zappos/product/{productId},/zara/product/{productId},/adidas/product(product_id),/bestbuy/product(sku),/homedepot/product/{id},/sephora/product(product_id— the full product-page slug likelip-sleeping-mask-P420652, not just the SKU),/shein/products/detail(goods_id+goods_sn),/ikea/product(item_no),/chewy/product(id)) for price, variants, specs. Kohl's has no standalone product-detail endpoint — product cards (includingweb_id, needed for reviews below) only come back embedded in/kohls/category's listing. - Sellers — for eBay/Shop.app, resolve the seller/shop (
/ebay/seller/...,/shop-app/shops/{handle}) to compare offers. - Reviews — pull product/seller reviews where available
(
/shop-app/products/{id}/reviews,/ebay/seller/.../feedback,/target/reviews,/costco/product/{id}/reviews,/walmart/product/{item_id}/reviews,/kohls/product/reviews(web_id),/macys/product/reviews(product_id),/nike/product/reviews(slug+style_color),/oldnavy/product/reviews(pid+brand),/ulta/product/reviews(product_id),/wish/product/{id}/reviews). H&M, Lululemon, Sam's Club, and Zappos surface reviews (when present) embedded in their own product-detail call instead of a separate endpoint; Wayfair and Zara expose no reviews at all — Wayfair's product detail only has an aggregate rating./bestbuy/product/reviews(sku),/sephora/product/reviews(product_id), and/ikea/reviews(item_no) cover those three separately; Home Depot and Chewy surface reviews embedded in their own product-detail call instead. Adidas and SHEIN expose no review/rating data at all. - Compare the JSON fields (price, currency, rating, seller) and answer.
Full endpoint list, methods, and params: reference/endpoints.md.
Calling the API
# 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 '.'
scripts/crawlora.sh /nike/search keyword="running shoes" | jq '.'
scripts/crawlora.sh /ulta/search query="retinol serum" | jq '.'
scripts/crawlora.sh /bestbuy/search q="laptop" | jq '.'
scripts/crawlora.sh /sephora/search query="retinol serum" | jq '.'
scripts/crawlora.sh /chewy/search q="salmon dog food" | jq '.'
# Product detail:
scripts/crawlora.sh /amazon/product asin=B0XXXXXXX | jq '{title,price}'
scripts/crawlora.sh /ikea/product item_no=00263850 | jq '.'
# Category browse (no keyword search on this platform):
scripts/crawlora.sh /wayfair/category category=478390 | jq '.'
scripts/crawlora.sh /zara/category/2420463/products | jq '.'
# Store locator only (no product catalog):
scripts/crawlora.sh /walgreens/stores zip=10001 | jq '.'
Raw curl fallback:
curl -fsS -H "x-api-key: $CRAWLORA_API_KEY" \
"https://api.crawlora.net/api/v1/amazon/search?k=laptop" | jq '.'
Endpoint reference
See reference/endpoints.md for every endpoint
this skill uses (method, path, params, description) across all 20 platforms:
Amazon, eBay, Shopify, Shop.app, Target, Costco, Zalando, Walmart, H&M,
Kohl's, Lululemon, Macy's, Nike, Old Navy (+ Gap, Banana Republic, Athleta),
Sam's Club, Ulta Beauty, Wayfair, Wish, Zappos, and Zara.
Examples
- Cross-marketplace price compare: search
/amazon/searchand/ebay/searchfor the same query, collectpricefrom each, and present the spread. - Seller due diligence:
/ebay/seller/{seller}+/ebay/seller/{seller}/feedbackto summarize a seller's rating and recent feedback before buying. - Shopify catalog audit:
/shopify/products(paginate) to list a store's catalog with prices, then flag items above/below a threshold. - No-search retailer browse: for a retailer with no keyword search
(Kohl's, Wayfair, Sam's Club), call the category/department-discovery
endpoint first (
/kohls/category's facets,/wayfair/categories,/samsclub/departments) to find a category id, then browse it directly instead of trying to search by keyword.
Notes & limits
- Credits / pay-on-success: billed only on
2xx; free tier 2,000 credits/mo. Key at https://crawlora.net. - Public data only — public product/listing pages; respect each marketplace's terms.
- Security: key lives in
CRAWLORA_API_KEYonly — never hardcode, query-param, or commit it. - Results are paginated — pass
page(andcountwhere supported) to walk listings. - Zalando always needs
market(no default storefront) — resolve valid codes via/zalando/marketsif unsure. - Macy's has no search or category browse — only
/macys/product/{productId}(needs a knownproductId) and/macys/suggesttypeahead. - Wayfair has no search and no reviews endpoint — only
/wayfair/categories→/wayfair/categoryand/wayfair/product/{id}(which carries an aggregate rating, but no review text). - Kohl's has no search or standalone product-detail endpoint — browse
/kohls/category(itscategoryparam takes a+-joined taxonomy string, percent-encode the+as%2B) and read product cards from the listing;/kohls/product/reviewsneeds theweb_idfrom that listing. - Sam's Club has no keyword-search endpoint — start from
/samsclub/departmentsor/samsclub/category; there's also no dedicated reviews endpoint (rating/review count only comes from/samsclub/product/{id}). - Lululemon has no keyword-search endpoint — browse via
/lululemon/categories→/lululemon/category; reviews are embedded in/lululemon/product/{product_id}, not a separate call. - Zara's
/zara/searchrequiressection(a department likeWOMAN), and Zara exposes no reviews endpoint at all. - Old Navy's endpoints are shared across four storefronts — pass
brand=on|gap|br|at(Old Navy/Gap/Banana Republic/Athleta; defaults toon); acid/pidfound under one brand only works with that same brand.
相关 Skills
继续浏览同一来源仓库中的其他 Skills。