Install
openclaw skills install @crawlora-org/amazon-researchResearches products, prices, availability, and search suggestions on Amazon (amazon.com) using the Crawlora API, returning clean JSON. Use when the user asks to find a product on Amazon, look up an ASIN's price/details, or pull Amazon autocomplete/keyword suggestions — instead of scraping Amazon pages.
openclaw skills install @crawlora-org/amazon-researchLook 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.
CRAWLORA_API_KEY in the environment before running the helper.CRAWLORA_API_KEY from the environment and sends requests to https://api.crawlora.net/api/v1. Missing/invalid key → 401./amazon/search with a keyword (k) to find candidate
products; paginate with page, sort with s./amazon/product/{asin} to fetch a specific product's
pricing, availability, overview data, inline review samples, and
descriptive content; optionally scope by currency/language./amazon/suggest/{keyword} for Amazon's own typeahead
keyword suggestions, useful for discovering related search terms before
running a full search.Full endpoint list, methods, and params: reference/endpoints.md.
# Search Amazon (GET, key=value params):
scripts/crawlora.sh /amazon/search k="standing desk" | jq '.'
# Product detail (ASIN is a path param):
scripts/crawlora.sh /amazon/product/B0XXXXXXX | jq '.data'
# Search suggestions (keyword is a path param):
scripts/crawlora.sh /amazon/suggest/standing | jq '.'
Use scripts/crawlora.sh for all requests; it keeps the API key out of command-line arguments.
See reference/endpoints.md for every Amazon
endpoint this skill uses (method, path, params, description).
/amazon/product/{asin} and read price /
availability from the response./amazon/suggest/{keyword} to expand a
rough query into Amazon's own suggested terms, then /amazon/search on
the best ones to collect candidate listings./amazon/search with page for a keyword,
collecting asin + price from each result to build a price snapshot.2xx; free tier 2,000 credits/mo.
Key at https://crawlora.net.CRAWLORA_API_KEY only — never hardcode, query-param, or commit it.page on /amazon/search to walk listings.asin and keyword are path params (substituted into the URL), not
query params — pass them as the last path segment, e.g.
/amazon/product/B0XXXXXXX, not asin=B0XXXXXXX.amazon.com only.