← ClaudeAtlas

amazon-searchlisted

Search Amazon products - find items, compare prices, read reviews
gooseworks-ai/goose-skills · ★ 727 · Code & Development · score 82
Install: claude install-skill gooseworks-ai/goose-skills
# Amazon Product Search ## Setup Read your credentials from ~/.gooseworks/credentials.json: ```bash export GOOSEWORKS_API_KEY=$(python3 -c "import json;print(json.load(open('$HOME/.gooseworks/credentials.json'))['api_key'])") export GOOSEWORKS_API_BASE=$(python3 -c "import json;print(json.load(open('$HOME/.gooseworks/credentials.json')).get('api_base','https://api.gooseworks.ai'))") ``` If ~/.gooseworks/credentials.json does not exist, tell the user to run: `npx gooseworks login` All endpoints use Bearer auth: `-H "Authorization: Bearer $GOOSEWORKS_API_KEY"` Search for products on Amazon. Find items by keyword, category, or criteria. ## When to Use - User wants to find a product on Amazon - User asks "find me a [product] on Amazon" - User wants to compare prices - User needs product recommendations ## How It Works Uses the SearchAPI Amazon Search engine to query Amazon's catalog. ## Usage ### Basic Product Search ```bash curl -s -X POST $GOOSEWORKS_API_BASE/v1/proxy/orthogonal/run \ -H "Authorization: Bearer $GOOSEWORKS_API_KEY" \ -H "Content-Type: application/json" \ -d '{"api":"searchapi","path":"/api/v1/search","query":{"engine":"amazon_search","q":"wireless earbuds"}}' ``` <details> <summary>curl equivalent</summary> ```bash curl -X POST "https://api.orth.sh/v1/run" \ -H "Content-Type: application/json" \ -d '{"api":"searchapi","path":"/api/v1/search","query":{"engine":"amazon_search","q":"wireless earbuds"}}' ``` </details> ### Search with Cate