GET /amazon/store-page-details

Store Page Details

Get detailed information about an Amazon brand store page.

Amazon Product Data API

Retrieve detailed information about a specific Amazon brand store page, including the store layout, featured products, hero images, and navigation structure.

HTTP Request

GET /amazon/store-page-details

Parameters

ParameterTypeRequiredDefaultDescription
page_store_idstringYes-The store page ID
marketplacestringNocomAmazon marketplace code
languagestringNo-Language code for results

Response

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
  "status": "OK",
  "request_id": "f2a3b4c5-2345-6789-5678-cccccccccccc",
  "data": {
    "country": "US",
    "store_id": "A2R2RITDJNW1Q6",
    "store_name": "Anker Official",
    "store_url": "https://www.amazon.com/stores/Anker/page/A2R2RITDJNW1Q6",
    "store_logo": "https://m.media-amazon.com/images/S/stores-image-uploads-na-prod/a/AZM_MER_LGO_Anker.png",
    "hero_image": "https://m.media-amazon.com/images/S/stores-image-uploads-na-prod/a/AZM_MER_HDR_Anker_Desktop.jpg",
    "store_description": "Anker is the global leader in charging technology and a driving force in portable power.",
    "pages": [
      {
        "page_id": "A2R2RITDJNW1Q6",
        "page_name": "Home",
        "page_url": "https://www.amazon.com/stores/Anker/page/A2R2RITDJNW1Q6"
      },
      {
        "page_id": "B07K8KLMN2",
        "page_name": "Chargers",
        "page_url": "https://www.amazon.com/stores/Anker/page/B07K8KLMN2"
      }
    ],
    "featured_products": [
      {
        "asin": "B0CS5ZBY5W",
        "product_title": "Anker USB C Charger, 67W 3-Port Fast Wall Charger",
        "product_price": "$27.99",
        "product_photo": "https://m.media-amazon.com/images/I/51N3p2cGq0L._AC_SL1500_.jpg"
      }
    ]
  }
}

Code Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
import requests

url = "https://real-time-amazon-data-the-most-complete.p.rapidapi.com/amazon/store-page-details"

params = {
    "page_store_id": "A2R2RITDJNW1Q6",
    "marketplace": "com"
}

headers = {
    "X-RapidAPI-Key": "YOUR_API_KEY",
    "X-RapidAPI-Host": "real-time-amazon-data-the-most-complete.p.rapidapi.com"
}

response = requests.get(url, headers=headers, params=params)
data = response.json()["data"]

print(f"Store: {data['store_name']}")
print(f"Description: {data['store_description']}")
for page in data["pages"]:
    print(f"  Page: {page['page_name']}")
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
const url = "https://real-time-amazon-data-the-most-complete.p.rapidapi.com/amazon/store-page-details";

const params = new URLSearchParams({
  page_store_id: "A2R2RITDJNW1Q6",
  marketplace: "com"
});

const response = await fetch(`${url}?${params}`, {
  headers: {
    "X-RapidAPI-Key": "YOUR_API_KEY",
    "X-RapidAPI-Host": "real-time-amazon-data-the-most-complete.p.rapidapi.com"
  }
});

const { data } = await response.json();
console.log(`Store: ${data.store_name}`);
data.pages.forEach(page => console.log(`  Page: ${page.page_name}`));
1
2
3
4
5
curl -G "https://real-time-amazon-data-the-most-complete.p.rapidapi.com/amazon/store-page-details" \
  --data-urlencode "page_store_id=A2R2RITDJNW1Q6" \
  --data-urlencode "marketplace=com" \
  -H "X-RapidAPI-Key: YOUR_API_KEY" \
  -H "X-RapidAPI-Host: real-time-amazon-data-the-most-complete.p.rapidapi.com"