Amazon Creator Shop Scraper
Retrieve public Amazon creator storefront profiles, social accounts, Idea Lists, and trending products.
Workspace
Configure
Inputs stay here while results become exportable artifacts.
Start from an example
Results
Preview, inspect, copy, or export the complete output.
Your result will become an artifact
Run the tool to inspect structured rows, raw JSON, execution details, and downloadable JSON, CSV, and Markdown files.
Overview
Amazon Creator Shop Scraper renders a public /shop storefront and normalizes the creator profile, external social accounts, Idea Lists, item counts, list imagery, and currently visible trending product ASINs, prices, badges, and images.
Last validated: Jul 15, 2026
Input
urlstringrequiredPublic Amazon /shop/{handle} URL. Scheme is optional.
max_trendingintegerdefault: 16max_collectionsintegerdefault: 20Output
namestringrequiredcountintegerrequiredavatarstringhandlestringrequiredsocialsobject[]requiredsource_urlstringrequiredcollectionsobject[]requireddescriptionstringtrending_productsobject[]requiredExamples
storefront
{
"url": "amazon.com/shop/sydneydelrey",
"max_trending": 8,
"max_collections": 10
}Use cases
FAQ
Does this require an Amazon login?
No. It reads public creator storefront pages.
Does it purchase products or add items to cart?
No. It only returns public storefront metadata.
Why does the tool use a browser strategy?
Amazon's storefront response is compressed and progressively enhanced; browser rendering yields the complete public creator and collection surface reliably.
Use it anywhere
MCP (Claude, ChatGPT, Codex)
# After connecting https://betterfetch.co/api/mcp, ask your AI to:
1. Call search_tools for "Amazon Creator Shop Scraper"
2. Call run_tool with:
name: "amazon_shop_scraper"
input: {"url":"amazon.com/shop/sydneydelrey","max_trending":8,"max_collections":10}REST
curl -sS -X POST "https://betterfetch.co/api/tools/amazon_shop_scraper/run" \
-H "Authorization: Bearer bf_your_key_here" \
-H "Content-Type: application/json" \
-d '{"input": {"url":"amazon.com/shop/sydneydelrey","max_trending":8,"max_collections":10}}'Run locally
git clone https://github.com/better-fetch/tools/tree/main/tools/amazon-shop-scraper && cd amazon-shop-scraper && npm i
BETTER_FETCH_API_KEY=bf_your_key_here npx bf-tool run --input '{"url":"amazon.com/shop/sydneydelrey","max_trending":8,"max_collections":10}'