Two Claude Skills that wrap the Amazon Scraper API so an AI agent can scrape live Amazon data through a single API call.
| Skill | What it does |
|---|---|
scrape-amazon-product/ |
Fetch live product data (title, price, rating, reviews, brand, availability, variants) for any ASIN across 20 marketplaces |
scrape-amazon-search-results/ |
Run a keyword search on Amazon and return ranked listings with organic/sponsored positions, prices, ratings, image URLs |
A Skill is a SKILL.md file with frontmatter that teaches Claude (or any compatible AI agent) how to perform a task. The description field acts as the trigger; the body holds the instructions, API contract, code samples, and worked workflows the model needs to do the job.
These two skills share one credential (ASA_API_KEY), match the contract documented in the amazon-scraper-api-mcp server, and each ship with runnable Python, Node, and curl examples.
Clone the repo and point your client at the skill directories:
git clone https://github.com/ChocoData-com/amazon-scraper-api-skills.gitThen register the two skill directories with your AI client (the exact mechanism varies, check your client's docs for "skill" or "custom skill" loading).
You need an Amazon Scraper API key. Get one with 1,000 free requests (no credit card) at https://app.amazonscraperapi.com.
export ASA_API_KEY=asa_live_...That same env var works for both skills.
- Free tier: 1,000 successful requests on signup, no card required
- Pay-as-you-go: $0.90 per 1,000 successful requests
- Non-2xx responses are not billed
- Amazon Scraper API - the underlying API
amazon-scraper-api-mcp- MCP server using the same API (Claude Desktop, Cursor, Continue)n8n-nodes-amazonscraperapi- n8n community node using the same API
MIT. See LICENSE.