Skip to content

Amazon Shop page

GET /v1/amazon/shop

Scrapes a creator's Amazon Shop page by URL, returning their storefront profile and product collections. Returns avatar, name, description, socials, and lists with title and itemCount. Also includes trendingPicks with price and discount, curations with title and postCount, and a pageToken for pagination.

Authentication

All requests require the x-api-key header. Get your key at scrapecreators.com.

Query Parameters

NameTypeRequiredDescriptionExample
urlstringyesURL to Amazon Shop pagehttps://www.amazon.com/shop/sydneydelrey

Example Request

curl

bash
curl 'https://api.scrapecreators.com/v1/amazon/shop?url=https://www.amazon.com/shop/sydneydelrey' \
  -H 'x-api-key: $SCRAPECREATORS_API_KEY'

Node / TypeScript

js
const params = new URLSearchParams({ url: 'https://www.amazon.com/shop/sydneydelrey' });
const res = await fetch(`https://api.scrapecreators.com/v1/amazon/shop?${params}`, {
  headers: { 'x-api-key': process.env.SCRAPECREATORS_API_KEY }
});
const data = await res.json();
console.log(data);

Python

python
import os, requests
r = requests.get(
    'https://api.scrapecreators.com/v1/amazon/shop',
    headers={'x-api-key': os.environ['SCRAPECREATORS_API_KEY']},
    params={'url': 'https://www.amazon.com/shop/sydneydelrey'},
)
r.raise_for_status()
print(r.json())

CLI

bash
scrapecreators amazon-shop shop --help

Example Response

json
{
  "success": true,
  "avatar": "https://m.media-amazon.com/images/I/A1rW00V-tHL._CR0%2C0%2C2560%2C2560_._US500_SCLZZZZZZZ_.jpg",
  "name": "sydney del rey",
  "description": "sharing all of my favorite Amazon finds ᥫ᭡ click the icons below to follow me on socials! all photo & video content is also shoppable x",
  "socials": [
    "https://vm.tiktok.com/ZTFrowSpg/"
  ],
  "lists": [
    {
      "title": "fall transition fits",
      "itemCount": 72,
      "image": "https://m.media-amazon.com/images/G/01/Influencer/full_bleed_pin_2x.png",
      "url": "https://www.amazon.com/shop/sydneydelrey/list/3QCPC18WETJFQ"
    }
  ],
  "trendingPicks": [
    {
      "url": "https://www.amazon.com/shop/sydneydelrey/getProductDetails/B0DDJFFCB5?showRelatedPost=true",
      "image": "https://m.media-amazon.com/images/I/41xvQcQoEnL._AC_.jpg",
      "price": 9.99,
      "discount": 29
    }
  ],
  "curations": [
    {
      "title": "Fall fashion 🍂",
      "postCount": 93,
      "image": "https://m.media-amazon.com/images/S/shoppable-media-external-prod-iad-us-east-1/039230ec-2e77-4287-beca-ecba4b03ca46/8cdde-e153-4e81-b404-a1ebd6c65._SX225_SCLZZZZZZZ_.jpeg",
      "url": "https://www.amazon.com/shop/sydneydelrey/curation/c7bb2f3d-07a2-42f5-85f8-02adbb937961"
    }
  ],
  "pageToken": "amzn1.ideas.1S28M0V6I8FUU_0_2025-09-03T01:17:37.837Z"
}

Credits

Most ScrapeCreators endpoints consume 1 credit per successful response. Some heavier endpoints (transcripts, AI-driven enrichment, ad detail lookups) may cost more. Check GET /v1/credit-balance for your remaining balance.

Errors

StatusMeaningAction
200Success.Use the JSON payload.
400Invalid or missing parameter.Verify required parameters and value format.
401Missing or invalid x-api-key.Pass a valid API key in the header.
402Out of credits.Top up at scrapecreators.com or wait for plan reset.
404Resource not found or private.Confirm the handle, URL, or id and that the resource is public.
429Rate limited.Backoff and retry with exponential delay.
500Server error or upstream platform failure.Retry with backoff; report persistent errors to support.