Product price research
Skill Crawlora-org/crawlora-skills/skills/product-price-research
Crawlora Agent Skills — structured public web data (search, e-commerce, social, finance, app stores, media, reviews) via the Crawlora REST API. Installable in any agent with the skills CLI or as a Claude Code plugin marketplace.
npx -y skills add Crawlora-org/crawlora-skills --skill product-price-researchAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Researches products, prices, sellers, and reviews across major online marketplaces (Amazon, eBay, Shopify stores, and Shop.app) 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 reviews — instead of scraping store pages.
SKILL.md
3.5 KB, 849 tokens by cl100k_base, as published. Nobody here has run it
Product & price research
Look up and compare products, prices, sellers, and reviews across Amazon, eBay, Shopify storefronts, and Shop.app — all as normalized JSON from the Crawlora API, with no HTML scraping.
When to use this skill
- "What does X cost on Amazon / eBay?" or "compare prices for X across sellers."
- "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.
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/searchto find candidate products by keyword. - Detail — fetch a specific product (
/amazon/product,/ebay/item,/shopify/products/{handle},/shop-app/products/{id}) for price, variants, specs. - 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). - 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 '.'
# 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 '.'
Endpoint reference
See reference/endpoints.md for every Amazon, eBay,
Shopify, and Shop.app endpoint this skill uses (method, path, params, description).
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.
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.
What ships with it: 2 files
16.1 KB alongside SKILL.md, 1 of them executable
reference/
- endpoints.md14.4 KB
scripts/
- crawlora.shruns1.8 KB