Better Fetch

Amazon Creator Shop Scraper

Retrieve public Amazon creator storefront profiles, social accounts, Idea Lists, and trending products.

Socialv0.1.0~1 credit/runSource on GitHub

Workspace

Configure

Inputs stay here while results become exportable artifacts.

Start from an example

Public Amazon /shop/{handle} URL. Scheme is optional.

Sign in and run
~1 credit/run10 runs/minute

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.

namecountavatarhandlesocialssource_urlcollectionsdescription

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

urlstringrequired

Public Amazon /shop/{handle} URL. Scheme is optional.

max_trendingintegerdefault: 16
max_collectionsintegerdefault: 20

Output

namestringrequired
countintegerrequired
avatarstring
handlestringrequired
socialsobject[]required
source_urlstringrequired
collectionsobject[]required
descriptionstring
trending_productsobject[]required

Examples

storefront

{
  "url": "amazon.com/shop/sydneydelrey",
  "max_trending": 8,
  "max_collections": 10
}

Use cases

Creator commerce research

Resolve an Amazon storefront to the creator's public identity, bio, avatar, and external social accounts.

Collection monitoring

Track a creator's visible Idea Lists, list IDs, item counts, imagery, and canonical URLs.

Product trend discovery

Capture the ASINs, prices, badges, and images Amazon currently surfaces as trending for that storefront.

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}'