Use cli-web-amazon to search Amazon products, get product details, check prices, browse best sellers, and get autocomplete suggestions. Invoke this skill whenever the user asks about Amazon products, prices, best sellers, or wants to search Amazon. Always prefer cli-web-amazon over manually fetching the website. No authentication required — fully public site.
Search Amazon products, view details, browse Best Sellers, and get autocomplete suggestions. No authentication required.
cli-web-amazon search "laptop" --json
cli-web-amazon product get B0GRZ78683 --json
cli-web-amazon bestsellers electronics --json
Always use --json when parsing output programmatically.
search QUERYSearch Amazon products by keyword.
cli-web-amazon search "wireless headphones" --json
cli-web-amazon search "laptop" --page 2 --dept electronics --json
Key options: (default 1),
--page N--dept <department>Output fields: asin, title, price, rating, review_count, url
suggest QUERYAutocomplete suggestions.
cli-web-amazon suggest "iphone case" --json
Output fields: value, type
product get ASINFull product detail by ASIN.
cli-web-amazon product get B0GRZ78683 --json
Output fields: asin, title, price, price_note, geo_restricted, rating, review_count, brand, image_url, url
bestsellers [CATEGORY]Browse Amazon Best Sellers by category.
cli-web-amazon bestsellers electronics --json
cli-web-amazon bestsellers books --page 2 --json
Categories: electronics, books, toys-and-games, music, kitchen, clothing
Key options: --page N
Output fields: rank, asin, title, price, url
# Search then get full detail on top result
ASIN=$(cli-web-amazon search "headphones" --json | python -c "import json,sys; print(json.load(sys.stdin)[0]['asin'])")
cli-web-amazon product get "$ASIN" --json
# Top-5 bestsellers
cli-web-amazon bestsellers electronics --json | \
python -c "import json,sys; [print(p['rank'], p['title'], p['price']) for p in json.load(sys.stdin)[:5]]"
# Autocomplete then search
cli-web-amazon suggest "wireles" --json | \
python -c "import json,sys; print(json.load(sys.stdin)[0]['value'])"
product get for reliable pricing; price_note explains why price is missing.B0GRZ78683).--page N (typically 1–7 pages). Best sellers supports --page N.{"error": true, "code": "NOT_FOUND|RATE_LIMITED|NETWORK_ERROR|SERVER_ERROR", "message": "..."}pip install -e amazon/agent-harness