amazon-researchlisted
Install: claude install-skill Crawlora-org/crawlora-skills
# Amazon product research
Look up and search Amazon products — pricing, availability, overview data,
inline reviews, and search suggestions — all as normalized JSON from the
Crawlora API, with no HTML scraping.
## When to use this skill
- "What does X cost on Amazon?" / "find this product on Amazon."
- "Search Amazon for X" and return candidate listings.
- "Look up this ASIN" / "get price and availability for B0XXXXXXX."
- "What does Amazon autocomplete suggest for this keyword?"
- Competitive pricing or catalog research scoped to Amazon.
## Setup (one-time)
- Get a free Crawlora API key (2,000 credits/mo, no card) at [https://crawlora.net](https://crawlora.net?utm_source=github&utm_medium=referral&utm_campaign=crawlora-skills).
- Set `CRAWLORA_API_KEY` in the environment before running the helper.
- The helper reads `CRAWLORA_API_KEY` from the environment and sends requests to `https://api.crawlora.net/api/v1`. Missing/invalid key → `401`.
## How it works
1. **Search** — `/amazon/search` with a keyword (`k`) to find candidate
products; paginate with `page`, sort with `s`.
2. **Detail** — `/amazon/product/{asin}` to fetch a specific product's
pricing, availability, overview data, inline review samples, and
descriptive content; optionally scope by `currency`/`language`.
3. **Suggest** — `/amazon/suggest/{keyword}` for Amazon's own typeahead
keyword suggestions, useful for discovering related search terms before
running a full search.
Full endpoint list,