Amazon Shop
Storefront
per_call
Returns a creator's curated Amazon storefront — profile avatar, display name, bio, connected socials — together with their idea lists, curations, trending picks and the products inside each list with titles, images and storefront URLs. This is the creator-curated shop page, not the Amazon retail catalog; ASIN detail, best sellers, reviews and seller info live in the separate Amazon services. Made for creator commerce and affiliate research.
Endpoint
GET /v1/amazon-shop/storefront
Price
$1.50
per 1,000 calls · $0.0015 per call
Cost per call
1 credit
Failed calls never charged
Parameters
url
required
stringThe public Amazon creator storefront URL to resolve.
Example request
Sandbox calls return deterministic sample data in the live payload shape.
curl
curl "https://api.fastfetchz.com/v1/amazon-shop/storefront?url=https%3A%2F%2Fwww.amazon.com%2Fshop%2Femmachamberlain" \
-H "X-API-Key: $FASTFETCHZ_KEY"Example response
200 application/json
{
"success": true,
"service": {
"platform": "Amazon Shop",
"name": "Storefront",
"slug": "storefront"
},
"credits_charged": 1,
"credits_remaining": 99,
"latency_ms": 214,
"data": {
"storefront": {
"handle": "nasa",
"name": "Nasa",
"bio": "My favourite everyday finds, all in one place.",
"avatar_url": "https://cdn.example.com/amazon-shop/nasa.jpg",
"storefront_url": "https://www.amazon.com/shop/nasa",
"socials": [
{
"platform": "instagram",
"url": "https://instagram.com/nasa"
},
{
"platform": "youtube",
"url": "https://youtube.com/@nasa"
}
],
"lists": [
{
"title": "Desk setup",
"item_count": 12,
"url": "https://www.amazon.com/shop/nasa/list/DESKSETUP",
"products": [
{
"asin": "B08N5WRWNW",
"title": "Echo Dot (4th Gen) Smart speaker with Alexa",
"image_url": "https://cdn.example.com/amazon/B08N5WRWNW.jpg",
"url": "https://www.amazon.com/dp/B08N5WRWNW"
}
]
}
],
"curations": [
{
"title": "Holiday gift guide",
"item_count": 24
}
],
"trending": [
{
"asin": "B09B8V1LZ3",
"title": "Sample trending pick",
"image_url": "https://cdn.example.com/amazon/B09B8V1LZ3.jpg",
"url": "https://www.amazon.com/dp/B09B8V1LZ3"
}
]
}
}
}Error codes
StatusCodeMeaning
401invalid_api_keyMissing or unrecognized X-API-Key header. No credits are charged.
402insufficient_creditsYour balance is below the cost of the call. Top up to continue.
403account_suspended / key_revokedThe account is suspended or the key was revoked.
429rate_limitedThe key exceeded its monthly cap or the burst limit. Retry later.
500upstream_errorUnexpected failure while fulfilling the request. Not charged.