万邦亚马逊国际获得AMAZON商品详情原数据 API 返回值说明

item_get_app-获得AMAZON商品详情原数据 [查看演示] API测试工具 注册开通

amazon.item_get_app

公共参数

请求地址: https://api-gw.onebound.cn/amazon/item_get_app

名称 类型 必须 描述
keyString调用key(必须以GET方式拼接在URL中)
secretString调用密钥
api_nameStringAPI接口名称(包括在请求地址中)[item_search,item_get,item_search_shop等]
cacheString[yes,no]默认yes,将调用缓存的数据,速度比较快
result_typeString[json,jsonu,xml,serialize,var_export]返回数据格式,默认为json,jsonu输出的内容中文可以直接阅读
langString[cn,en,ru]翻译语言,默认cn简体中文
versionStringAPI版本
请求参数

请求参数:num_iid=B016LO4UTA&domain=com

参数说明:num_iid:AMAZON商品ID
domain:站点(可选,默认为com站点)

响应参数

Version: Date:

名称 类型 必须 示例值 描述
item
item[] 0 获取亚马逊app上原数据
请求示例
	
-- 请求示例 url 默认请求参数已经URL编码处理
curl -i "https://api-gw.onebound.cn/amazon/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com"
<?php

// 请求示例 url 默认请求参数已经URL编码处理
// 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.onebound.cn/help/demo/sdk/demo-sign.php
$method = "GET";
$url = "https://api-gw.onebound.cn/amazon/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com";
$curl = curl_init();
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST,FALSE);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER,FALSE);
curl_setopt($curl, CURLOPT_FAILONERROR, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HEADER, true);
curl_setopt($curl, CURLOPT_ENCODING, "gzip");
var_dump(curl_exec($curl));
?>
<?php
//定义缓存目录和引入文件
define("DIR_RUNTIME","runtime/");
define("DIR_ERROR","runtime/");
define("SECACHE_SIZE","0");
//SDK下载地址 https://open.onebound.cn/help/demo/sdk/onebound-api-sdk.zip
include ("ObApiClient.php");

$obapi = new otao\ObApiClient();
$obapi->api_url = "http://api-gw.onebound.cn/";
$obapi->api_urls = array("http://api-gw.onebound.cn/","http://api-1.onebound.cn/");//备用API服务器
$obapi->api_urls_on = true;//当网络错误时,是否启用备用API服务器
$obapi->api_key = "<您自己的apiKey>";
$obapi->api_secret = "<您自己的apiSecret>";
$obapi->api_version ="";
$obapi->secache_path ="runtime/";
$obapi->secache_time ="86400";
$obapi->cache = true;

$api_data = $obapi->exec(
                array(
	                "api_type" =>"amazon",
	                "api_name" =>"item_get_app",
	                "api_params"=>array (
  'num_iid' => 'B016LO4UTA',
  'domain' => 'com',
)
                )
            );
 var_dump($api_data);
?>
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.net.URL;
import java.nio.charset.Charset;
import org.json.JSONException;
import org.json.JSONObject;
import java.io.PrintWriter;
import java.net.URLConnection;

public class Example {
	private static String readAll(Reader rd) throws IOException {
		StringBuilder sb = new StringBuilder();
		int cp;
		while ((cp = rd.read()) != -1) {
			sb.append((char) cp);
		}
		return  sb.toString();
	}
	public static JSONObject postRequestFromUrl(String url, String body) throws IOException, JSONException {
		URL realUrl = new URL(url);
		URLConnection conn = realUrl.openConnection();
		conn.setDoOutput(true);
		conn.setDoInput(true);
		PrintWriter out = new PrintWriter(conn.getOutputStream());
		out.print(body);
		out.flush();
		InputStream instream = conn.getInputStream();
		try {
			BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
			String jsonText = readAll(rd);
			JSONObject json = new JSONObject(jsonText);
			return json;
		} finally {
			instream.close();
		}
	}
	public static JSONObject getRequestFromUrl(String url) throws IOException, JSONException {
		URL realUrl = new URL(url);
		URLConnection conn = realUrl.openConnection();
		InputStream instream = conn.getInputStream();
		try {
			BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
			String jsonText = readAll(rd);
			JSONObject json = new JSONObject(jsonText);
			return json;
		} finally {
			instream.close();
		}
	}
	public static void main(String[] args) throws IOException, JSONException {
		// 请求示例 url 默认请求参数已经URL编码处理
		String url = "https://api-gw.onebound.cn/amazon/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com";
		JSONObject json = getRequestFromUrl(url);
		System.out.println(json.toString());
	}

}
//using System.Net.Security;
//using System.Security.Cryptography.X509Certificates;
private const String method = "GET";
static void Main(string[] args)
{
	String bodys = "";
	// 请求示例 url 默认请求参数已经做URL编码
	String url = "https://api-gw.onebound.cn/amazon/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com";
	HttpWebRequest httpRequest = null;
	HttpWebResponse httpResponse = null; 
	if (url.Contains("https://"))
	{
		ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult);
		httpRequest = (HttpWebRequest)WebRequest.CreateDefault(new Uri(url));
	}
	else
	{
		httpRequest = (HttpWebRequest)WebRequest.Create(url);
	}
	httpRequest.Method = method;
	if (0 < bodys.Length)
	{
		byte[] data = Encoding.UTF8.GetBytes(bodys);
		using (Stream stream = httpRequest.GetRequestStream())
		{
		stream.Write(data, 0, data.Length);
		}
	}
	try
	{
		httpResponse = (HttpWebResponse)httpRequest.GetResponse();
	}
	catch (WebException ex)
	{
		httpResponse = (HttpWebResponse)ex.Response;
	}
	Console.WriteLine(httpResponse.StatusCode);
	Console.WriteLine(httpResponse.Method);
	Console.WriteLine(httpResponse.Headers);
	Stream st = httpResponse.GetResponseStream();
	StreamReader reader = new StreamReader(st, Encoding.GetEncoding("utf-8"));
	Console.WriteLine(reader.ReadToEnd());
	Console.WriteLine("\n");
}
public static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
{
	return true;
}
# coding:utf-8
"""
Compatible for python2.x and python3.x
requirement: pip install requests
"""
from __future__ import print_function
import requests
# 请求示例 url 默认请求参数已经做URL编码
url = "https://api-gw.onebound.cn/amazon/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com"
headers = {
    "Accept-Encoding": "gzip",
    "Connection": "close"
}
if __name__ == "__main__":
    r = requests.get(url, headers=headers)
    json_obj = r.json()
    print(json_obj)
url := fmt.Sprintf("https://api-gw.onebound.cn/amazon/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com", params)
req, err := http.NewRequest("GET", url, nil)
if err != nil {
    panic(err)
}
req.Header.Set("Authorization", apiKey)

client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
    panic(err)
}
defer resp.Body.Close()

body, err := ioutil.ReadAll(resp.Body)
if err != nil {
    panic(err)
}

fmt.Println(string(body))
fetch('https://api-gw.onebound.cn/amazon/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({"num_iid":"B016LO4UTA","domain":"com"})// request parameters here
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error));
<script src="js/obapi.js"></script>
<script type="text/javascript">
obAPI.config({
    debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
    api_url: "https://api-gw.onebound.cn", // 
    api_key: "<您自己的apiKey>", // 必填,
    api_secret: "<您自己的apiSecret>", //
    lang: "cn", // 
    timestamp: "", // 必填,生成签名的时间戳
    nonceStr: "", // 必填,生成签名的随机串
    signature: "",// 必填,签名
    jsApiList: [] // 必填,需要使用的JS接口列表
});
</script>
<div id="api_data_box"></div>
<script type="text/javascript">
obAPI.exec(
     {
     "api_type":"amazon",
     "api_name" : "item_get_app",
     "api_params": {"num_iid":"B016LO4UTA","domain":"com"}//num_iid=B016LO4UTA&domain=com,#具体参数请参考文档说明
     },
     function(e){
        document.querySelector("#api_data_box").innerHTML=JSON.stringify(e)
     }
);
</script>
require "net/http"
require "uri"
url = URI("https://api-gw.onebound.cn/amazon/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body 
import Foundation
 
let url = URL(string: "https://api-gw.onebound.cn/amazon/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com")!
let task = URLSession.shared.dataTask(with: url) { data, response, error in
    guard let data = data else {
        print("Error: No data was returned")
        return
    }
     
    if let data = String(data: data, encoding: .utf8) {
        print(data)
    }
}
task.resume()
NSURL *myUrl = [NSURL URLWithString:@"https://api-gw.onebound.cn/amazon/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com"];

NSMutableURLRequest *request=[NSMutableURLRequest requestWithURL:myUrl cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:60.0];

[request setHTTPMethod:@"GET"];
NSError *error;
NSURLResponse *response;

NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];

NSString *result = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
NSLog(@"%@",result);
#include<stdio.h>
#include <stdlib.h>
#include<string.h>
#include<curl/curl.h>

int main(){
  CURL *curl;  
  CURLcode res;   
  struct curl_slist *headers=NULL; 

  char url[] = "https://api-gw.onebound.cn/amazon/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com";
  curl_global_init(CURL_GLOBAL_ALL); 
  curl = curl_easy_init(); 

  if(curl) {
    curl_easy_setopt(curl, CURLOPT_URL,url);
    headers = curl_slist_append(headers, "Content-Type: application/json"); 

    curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers); 
    res = curl_easy_perform(curl);

    if(res != CURLE_OK){
      printf("curl_easy_perform(): %s\n",curl_easy_strerror(res));                     
    }
    curl_easy_cleanup(curl);          
  }
  curl_global_cleanup();
  return 0;
}
#include<iostream>
#include<string>
#include<curl/curl.h>

using namespace std;

static size_t Data(void *ptr, size_t size, size_t nmemb, string *stream)
{
    std::size_t realSize = size *nmemb;
    auto *realPtr = reinterpret_cast<char *>(ptr);

    for (std::size_t i=0;i<realSize;++i) {
        *(stream) += *(realPtr + i);
    }

    return realSize;
}

int main(){

     CURL *curl;
     CURLcode result;
     string readBuffer;
     curl = curl_easy_init();

     if(curl) {

         curl_easy_setopt(curl, CURLOPT_URL, "https://api-gw.onebound.cn/amazon/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com");
         curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
         curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, Data);
         curl_easy_setopt(curl, CURLOPT_WRITEDATA, &readBuffer);

         result = curl_easy_perform(curl);

         if(result == CURLE_OK) {
             cout<<readBuffer<<endl;
         }else{
             cerr<<"curl_easy error:"<<curl_easy_strerror(result)<<endl;
         }

         curl_easy_cleanup(curl);
     }
     return 0;
}
const https = require("https");

https.get("https://api-gw.onebound.cn/amazon/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com", (resp) => {
  let data = "";

  resp.on("data", (chunk) => {
    data += chunk;
  });

  resp.on("end", () => {
    console.log(data);
  });
}).on("error", (err) => {
  console.log("Error: " + err.message);
});
import java.net.HttpURLConnection
import java.net.URL

fun main() {
    val url = URL("https://api-gw.onebound.cn/amazon/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com")
    val con = url.openConnection() as HttpURLConnection
    con.requestMethod = "GET"

    val responseCode = con.responseCode
    if (responseCode == HttpURLConnection.HTTP_OK) { // success
        val inputLine = con.inputStream.bufferedReader().use { it.readText() }
        println(inputLine)
    } else {
        println("GET request failed")
    }
}
use std::io::{self, Read};
use reqwest;

fn main() -> io::Result<()> {

    let mut resp = reqwest::get("https://api-gw.onebound.cn/amazon/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com")?;
    let mut content = String::new();
    resp.read_to_string(&mut content)?;

    println!("{}", content);

    Ok(())
}

library(httr)
r <- GET("https://api-gw.onebound.cn/amazon/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com")
content(r)
url = "https://api-gw.onebound.cn/amazon/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=B016LO4UTA&domain=com";
response = webread(url);
disp(response);
响应示例
{
    "item": {
        "item": {
            "ProductInformation": [
                {
                    "merchantId": "A2F8BOEVDTJ9VG",
                    "asin": "B0FR21PT7Z"
                },
                {
                    "isInternal": false,
                    "showInsightsHub": false,
                    "isRobot": false,
                    "showFaceout": true,
                    "merchantId": "A2F8BOEVDTJ9VG",
                    "availableBadges": "",
                    "loggedIn": false,
                    "asin": "B0FR21PT7Z",
                    "showBadge": false,
                    "ingressFaceout": "",
                    "availableFaceouts": "TK_BOUGHT"
                },
                {
                    "shouldUseNatc": true
                },
                {
                    "holdbackSecondaryPanelsWeblab": "",
                    "additionalWeblabs": "{\"PAX_CHECKOUT_BUY_NOW_UFO_TANGO_DESKTOP_1118473\":\"\",\"PAX_CHECKOUT_BUY_NOW_GC_TANGO_1121297\":\"\",\"PAX_CHECKOUT_ALC_BUY_NOW_TANGO_1185935\":\"\",\"PAX_CHECKOUT_BUY_NOW_TO_TANGO_REMOVE_LEGACY_PIPELINE_PARAMETER_1125072\":\"\",\"RCX_CHECKOUT_DISABLE_TURBO_FOR_NPA_DESKTOP_EXPERIMENT_1173801\":\"\",\"PAX_CHECKOUT_BUY_NOW_AMP_TANGO_DESKTOP_1118500\":\"\",\"PAX_CHECKOUT_BUY_NOW_TO_TANGO_CUSTOMER_ELIGIBILITY_CHECK_REMOVAL_1134797\":\"\",\"A2I_CHECKOUT_FREEBIES_ENABLE_BUY_NOW_TANGO_1207355\":\"\",\"PAX_CHECKOUT_VAS_ENABLE_BUY_NOW_TANGO_1165794\":\"\",\"UPMT_CHECKOUT_BUY_NOW_GIFT_TANGO_DESKTOP_1044576\":\"\",\"PAX_CHECKOUT_BUY_NOW_TO_TANGO_DESKTOP_EXPERIMENT_NON_PRIME_1088576\":\"\",\"PAX_TURBO_INITIATE_MIGRATION_DESKTOP_NON_PRIME_986684\":\"\"}",
                    "inputs": {
                        "verificationSessionID": "140-3398698-5446816",
                        "a": "B0FR21PT7Z",
                        "quantity": "1",
                        "oid": "",
                        "incentivizedCart": "",
                        "addressId": ""
                    },
                    "configurations": {
                        "prefetchEnabled": true,
                        "isSignInEnabled": true,
                        "initiateSelector": "#buy-now-button"
                    },
                    "aapiCsrfToken": "1@g1dKc2uMIiiI4DOMNmi4zUUlG2w1V/BHWYgJT2fhW9VPAAAAAQAAAABpUg9zcmF3AAAAABVX8CwXqz42z+J7i/ABqA==@NLD_G5K5YE",
                    "isPrimeCustomer": false,
                    "eligibility": {
                        "isEligible": false
                    },
                    "turboWeblabTreatment": "T2",
                    "isTangoCheckoutEligible": true,
                    "timeout": "5000",
                    "turboWeblab": "RCX_CHECKOUT_TURBO_DESKTOP_NONPRIME_87784",
                    "strings": {
                        "TURBO_LOADING_TEXT": "Loading your order summary",
                        "TURBO_CLOSE_TEXT": "Close.",
                        "TURBO_CHECKOUT_HEADER": "Buy now: Zyee Syee Fitness Tracker with Sleep Tracking, 24/7 Activity Tracker, Step Tracker, Heart Rate, Blood Oxygen, Stress Management, 5ATM Waterproof, No Subscription Fee for iOS & Android"
                    },
                    "buttonID": "buy-now"
                },
                {
                    "heroName": ""
                },
                [],
                {
                    "showInlineLink": false,
                    "hzPopover": true,
                    "wishlistButtonId": "add-to-wishlist-button",
                    "dropDownHtml": "",
                    "inlineJsFix": true,
                    "wishlistButtonSubmitId": "add-to-wishlist-button-submit",
                    "maxAjaxFailureCount": "3",
                    "asin": "B0FR21PT7Z",
                    "dropdownAriaLabel": "Select a list from the dropdown",
                    "closeButtonAriaLabel": "Close"
                },
                {
                    "formId": "addToCart",
                    "wishlistPopoverWidth": 206,
                    "isAddToWishListDropDownAuiEnabled": true,
                    "showPopover": false,
                    "showWishListDropDown": false
                },
                {
                    "shouldRemoveCaption": false
                },
                {
                    "acAsin": "B0FR21PT7Z"
                },
                {
                    "isInternal": false,
                    "showInsightsHub": false,
                    "isRobot": false,
                    "showFaceout": true,
                    "merchantId": "A2F8BOEVDTJ9VG",
                    "availableBadges": "",
                    "loggedIn": false,
                    "asin": "B0FR21PT7Z",
                    "showBadge": false,
                    "ingressFaceout": "",
                    "availableFaceouts": "TK_BOUGHT"
                },
                {
                    "sortedVariations": [
                        [
                            0,
                            0
                        ]
                    ],
                    "sorting_filtering_exp": {
                        "sorting": [
                            "featuredOffer",
                            "availability",
                            "region"
                        ]
                    },
                    "sortedDimValuesForAllDims": {
                        "size_name": [
                            {
                                "dimensionValueDisplayText": "M",
                                "indexInDimList": 0,
                                "defaultAsin": "B0FR21PT7Z",
                                "dimensionDisplaySubType": "TEXT",
                                "asinHiddenInCollapseView": true,
                                "slotsFetched": false,
                                "dimensionValueState": "SELECTED"
                            }
                        ],
                        "color_name": [
                            {
                                "dimensionValueDisplayText": "Rose Gold&Red",
                                "indexInDimList": 0,
                                "defaultAsin": "B0FR21PT7Z",
                                "dimensionDisplaySubType": "TEXT",
                                "imageAttribute": {
                                    "extension": "jpg",
                                    "width": 500,
                                    "url": "https://m.media-amazon.com/images/I/41s-3JyJ4QL.jpg",
                                    "height": 500
                                },
                                "asinHiddenInCollapseView": true,
                                "slotsFetched": false,
                                "dimensionValueState": "SELECTED"
                            }
                        ]
                    }
                },
                {
                    "asinsInCollapsedView": [
                        "B0FR21PT7Z"
                    ]
                },
                {
                    "ALM": "Local Stores",
                    "RENEWED_TIER_1": "Refurbished",
                    "RENEWED_TIER_4": "Refurbished",
                    "SNS": "Subscribe & Save",
                    "USED": "Used",
                    "RENEWED_TIER_3": "Refurbished",
                    "RENEWED_TIER_2": "Refurbished",
                    "PRIME_SAVINGS_UPSELL": "With Prime"
                },
                {
                    "updateCSMPageTypeId": true
                },
                {
                    "buyingOptionTypes": [
                        "NEW"
                    ],
                    "zipCode": "90060",
                    "productAsin": "B0FR21PT7Z",
                    "countryCode": "US"
                },
                {
                    "showPPDBundlesWidget": false,
                    "doRedirect": true,
                    "showEnhancedUpsellBundle": false,
                    "hijackMBCATC": false,
                    "isCBM": false,
                    "isWarrantyPresent": true,
                    "isVariationalParent": false
                },
                {
                    "isProductSummaryAvailable": false,
                    "device": "desktop"
                },
                {
                    "enableFullScreenByDefault": false,
                    "clickstreamNexusMetricsConfig": {
                        "producerId": "vsemetrics_playercards",
                        "schemaId": "clickstream.CustomerEvent.4",
                        "actionType": "DISCOVERY",
                        "eventOwner": "vsemetrics_playercards",
                        "eventType": "IVEVideoView",
                        "productId": "B0FR21PT7Z"
                    },
                    "videoReferenceId": "sc|f1c92249-c6d4-45d8-a519-530edf44a0cc|897eb758|ATVPDKIKX0DER|A2F8BOEVDTJ9VG",
                    "contentId": "B0FR21PT7Z",
                    "ccvDisclosure": "",
                    "closedCaptionsConfig": {
                        "captionsOnTexts": {
                            "de": "German (Automated)",
                            "en": "English (Automated)",
                            "fr": "French (Automated)",
                            "es": "Spanish (Automated)"
                        },
                        "captionsOffText": "Captions off",
                        "languageToLabelTexts": {
                            "English": "English",
                            "French": "French",
                            "German": "German",
                            "Spanish": "Spanish"
                        }
                    },
                    "mimeType": "application/x-mpegURL",
                    "vendorCode": "APLUSSC",
                    "videoHeight": 480,
                    "disableReportIllegalLink": false,
                    "videoWidth": 854,
                    "initialClosedCaptions": "en,https://m.media-amazon.com/images/S/vse-vms-closed-captions-artifact-us-east-1-prod/closedCaptions/ec9a6ff1-a6c5-4fdc-af47-32cd13380473.vtt",
                    "useHotspotsNX": false,
                    "eligibleToTriggerCCWeblab": false,
                    "videoUrl": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/18a17dae-0877-4e6b-83f0-8507b2588551/default.jobtemplate.hls.m3u8",
                    "metricsEmissionMethod": "nexus",
                    "imageUrl": "https://m.media-amazon.com/images/I/81TgTUJqQdL.jpg",
                    "needPlayerFactory": false,
                    "isMobile": false,
                    "showHotspots": false,
                    "aciContentId": "amzn1.vse.video.04e03d618fc64ff28406bd7401e88093",
                    "altText": "Smart Bracelet for Women",
                    "creatorType": "Seller",
                    "clientPrefix": "aplus-317546",
                    "hotSpotsV3Weblab": "",
                    "productAsin": "B0FR21PT7Z",
                    "labelDetails": {
                        "labelName": "",
                        "labelType": "",
                        "labelWeblabName": "",
                        "labelWeblabTreatment": "",
                        "showLabel": false,
                        "tooltipSelector": ""
                    },
                    "sushiMetricsConfig": {
                        "eventSource": "Player",
                        "endpoint": "https://unagi-na.amazon.com/1/events/com.amazon.eel.vse.metrics.prod.events.test",
                        "requestId": "9SYJXH7FTNWP7JP8BT7Y",
                        "sessionId": "140-3398698-5446816",
                        "customerId": "0",
                        "refMarkers": "aplus-317546_ref",
                        "sessionType": 1,
                        "placementContext": "desktop_web.AplusWidget.aplusdp",
                        "marketplaceId": "ATVPDKIKX0DER",
                        "weblabIds": "",
                        "isInternal": false,
                        "isRobot": false,
                        "clientId": "VSE-US",
                        "videoAsinList": "",
                        "pageAsin": "B0FR21PT7Z"
                    },
                    "reportUrl": "",
                    "videoTitle": "Smart Bracelet for Women",
                    "vendorName": "Merchant Video",
                    "nexusMetricsConfig": {
                        "eventSource": "Player",
                        "isInternal": false,
                        "playerTSMMetricsSchemaId": "vse.VSECardsPlayerEvents.9",
                        "widgetMetricsSchemaId": "vse.VSECardsEvents.9",
                        "producerId": "vsemetrics_playercards",
                        "refMarkers": "aplus-317546_ref",
                        "placementContext": "desktop_web.AplusWidget.aplusdp",
                        "weblabIds": "",
                        "clientId": "VSE-US",
                        "videoAsin": "04e03d618fc64ff28406bd7401e88093",
                        "videoAsinList": "",
                        "pageAsin": "B0FR21PT7Z"
                    },
                    "awaConfig": {
                        "useUpNextComponent": false,
                        "clickstreamNexusMetricsConfig": {
                            "producerId": "vsemetrics_playercards",
                            "schemaId": "clickstream.CustomerEvent.4",
                            "actionType": "DISCOVERY",
                            "eventOwner": "vsemetrics_playercards",
                            "eventType": "IVEVideoView",
                            "productId": "B0FR21PT7Z"
                        },
                        "initialVideo": "04e03d618fc64ff28406bd7401e88093",
                        "shouldPreload": true,
                        "enableClickBasedAttribution": false,
                        "isChromelessPlayer": false,
                        "closedCaptionsConfig": {
                            "captionsOnTexts": {
                                "de": "German (Automated)",
                                "en": "English (Automated)",
                                "fr": "French (Automated)",
                                "es": "Spanish (Automated)"
                            },
                            "captionsOffText": "Captions off",
                            "languageToLabelTexts": {
                                "English": "English",
                                "French": "French",
                                "German": "German",
                                "Spanish": "Spanish"
                            }
                        },
                        "enableDynamicBlur": false,
                        "showPlayerPlayButton": false,
                        "isVideoImmersivePlayer": false,
                        "metricsEmissionMethod": "nexus",
                        "skipInitialFocus": false,
                        "playerSkin": "none",
                        "disabledViewIds": [
                            "replayHint"
                        ],
                        "includeEarnsComissionDisclosure": false,
                        "customerId": "0",
                        "containerId": "aplus-317546-player-f0a4a679-f656-452b-bac4-248e0fc0d11f",
                        "allowCrossOrigin": false,
                        "requestMetadata": {
                            "clientId": "VSE-US",
                            "marketplaceId": "ATVPDKIKX0DER",
                            "requestId": "9SYJXH7FTNWP7JP8BT7Y",
                            "sessionId": "140-3398698-5446816",
                            "method": "desktop_web.AplusWidget.aplusdp",
                            "pageAsin": ""
                        },
                        "shouldLoop": false,
                        "shouldDisableControls": false,
                        "alwaysSetInitialVideo": true,
                        "showPlayerCloseButton": false,
                        "clientPrefix": "aplus-317546",
                        "useAutoplayFallback": false,
                        "sushiMetricsConfig": {
                            "eventSource": "Player",
                            "endpoint": "https://unagi-na.amazon.com/1/events/com.amazon.eel.vse.metrics.prod.events.test",
                            "requestId": "9SYJXH7FTNWP7JP8BT7Y",
                            "sessionId": "140-3398698-5446816",
                            "customerId": "0",
                            "refMarkers": "aplus-317546_ref",
                            "sessionType": 1,
                            "placementContext": "desktop_web.AplusWidget.aplusdp",
                            "marketplaceId": "ATVPDKIKX0DER",
                            "weblabIds": "",
                            "isInternal": false,
                            "isRobot": false,
                            "clientId": "VSE-US",
                            "videoAsinList": "",
                            "pageAsin": "B0FR21PT7Z"
                        },
                        "ospLinkCode": "vse",
                        "showPosterImage": true,
                        "languageCode": "en",
                        "languageLocalization": {
                            "play": "Play",
                            "volumeLevel": "Volume Level",
                            "subtitles": "Subtitles",
                            "volumeSlider": "Volume Slider",
                            "playVideo": "Click to play video",
                            "fullscreen": "Fullscreen",
                            "scrubberBar": "Scrubber bar",
                            "mute": "Mute",
                            "unmute": "Unmute",
                            "pause": "Pause",
                            "captions": "Captions",
                            "nonfullscreen": "Non-Fullscreen"
                        },
                        "version": "",
                        "isMoreVideosButtonEnabled": false,
                        "nexusMetricsConfig": {
                            "eventSource": "Player",
                            "isInternal": false,
                            "playerTSMMetricsSchemaId": "vse.VSECardsPlayerEvents.9",
                            "widgetMetricsSchemaId": "vse.VSECardsEvents.9",
                            "producerId": "vsemetrics_playercards",
                            "refMarkers": "aplus-317546_ref",
                            "placementContext": "desktop_web.AplusWidget.aplusdp",
                            "weblabIds": "",
                            "clientId": "VSE-US",
                            "videoAsin": "04e03d618fc64ff28406bd7401e88093",
                            "videoAsinList": "",
                            "pageAsin": "B0FR21PT7Z"
                        },
                        "shouldStartMuted": false,
                        "airyVersion": "VideoJS",
                        "languagePreferenceStrings": [],
                        "enableInactiveFocus": true,
                        "showVideoInfo": false,
                        "isReactFactory": false,
                        "osaInstrumentationConfig": {
                            "schemaId": "csa.VideoInteractions.2",
                            "producerId": "vsemetrics_csa_instrumentation"
                        },
                        "enableDelphiAttribution": true,
                        "includeReportWidget": false,
                        "shouldAutoplay": false
                    }
                },
                []
            ],
            "ProductInformation2": [
                {
                    "name": "Package Dimensions",
                    "value": "3.15 x 3.15 x 1.73 inches"
                },
                {
                    "name": "Item Weight",
                    "value": "2.08 ounces"
                },
                {
                    "name": "ASIN",
                    "value": "B0FR21PT7Z"
                },
                {
                    "name": "Item model number",
                    "value": "B0FR21PT7Z"
                },
                {
                    "name": "Batteries",
                    "value": "1 A batteries required. (included)"
                },
                {
                    "name": "Customer Reviews",
                    "value": "5.05.0 out of 5 stars(11)5.0 out of 5 stars"
                },
                {
                    "name": "Best Sellers Rank",
                    "value": "#20,883 in Sports & Outdoors (See Top 100 in Sports & Outdoors)#106 inActivity & Fitness Trackers#167 inElectronics & Gadgets"
                },
                {
                    "name": "Date First Available",
                    "value": "September 13, 2025"
                },
                {
                    "name": "Manufacturer",
                    "value": "Zyee Syee"
                },
                {
                    "name": "Memory Storage Capacity",
                    "value": "32 MB"
                }
            ],
            "ImageBlock": {
                "dataInJson": null,
                "alwaysIncludeVideo": true,
                "autoplayVideo": false,
                "defaultColor": "initial",
                "mainImageSizes": [
                    [
                        "355",
                        "355"
                    ],
                    [
                        "450",
                        "450"
                    ],
                    [
                        "425",
                        "550"
                    ],
                    [
                        "466",
                        "606"
                    ],
                    [
                        "522",
                        "679"
                    ],
                    [
                        "569",
                        "741"
                    ],
                    [
                        "679",
                        "879"
                    ]
                ],
                "maxAlts": 7,
                "altsOnLeft": true,
                "productGroupID": "ce_display_on_website",
                "lazyLoadExperienceDisabled": true,
                "lazyLoadExperienceOnHoverDisabled": false,
                "useChromelessVideoPlayer": false,
                "colorToAsin": {
                    "Rose Gold&Red M": {
                        "asin": "B0FR21PT7Z"
                    }
                },
                "refactorEnabled": true,
                "useIV": true,
                "tabletWeb": false,
                "views": [
                    "ImageBlockMagnifierView",
                    "ImageBlockAltImageView",
                    "ImageBlockVideoView",
                    "ImageBlockTwisterView",
                    "ImageBlockImmersiveViewImages",
                    "ImageBlockImmersiveViewVideos",
                    "ImageBlockImmersiveViewDimensionIngress",
                    "ImageBlockImmersiveViewShowroom",
                    "ImageBlockImmersiveView360",
                    "ImageBlockTabbedImmersiveView"
                ],
                "enhancedHoverOverlay": false,
                "landingAsinColor": "Rose Gold&Red M",
                "colorImages": {
                    "Rose Gold&Red M": [
                        {
                            "large": "https://m.media-amazon.com/images/I/41s-3JyJ4QL._AC_.jpg",
                            "thumb": "https://m.media-amazon.com/images/I/41s-3JyJ4QL._AC_US40_.jpg",
                            "hiRes": "https://m.media-amazon.com/images/I/71Ki-q+FxyL._AC_SL1500_.jpg",
                            "variant": "MAIN",
                            "main": {
                                "https://m.media-amazon.com/images/I/71Ki-q+FxyL._AC_SX522_.jpg": [
                                    "522",
                                    "522"
                                ],
                                "https://m.media-amazon.com/images/I/71Ki-q+FxyL._AC_SX569_.jpg": [
                                    "569",
                                    "569"
                                ],
                                "https://m.media-amazon.com/images/I/71Ki-q+FxyL._AC_SY355_.jpg": [
                                    "355",
                                    "355"
                                ],
                                "https://m.media-amazon.com/images/I/71Ki-q+FxyL._AC_SY450_.jpg": [
                                    "450",
                                    "450"
                                ],
                                "https://m.media-amazon.com/images/I/71Ki-q+FxyL._AC_SX679_.jpg": [
                                    "679",
                                    "679"
                                ],
                                "https://m.media-amazon.com/images/I/71Ki-q+FxyL._AC_SX425_.jpg": [
                                    "425",
                                    "425"
                                ],
                                "https://m.media-amazon.com/images/I/71Ki-q+FxyL._AC_SX466_.jpg": [
                                    "466",
                                    "466"
                                ]
                            }
                        },
                        {
                            "large": "https://m.media-amazon.com/images/I/51QfPYrHzJL._AC_.jpg",
                            "thumb": "https://m.media-amazon.com/images/I/51QfPYrHzJL._AC_US40_.jpg",
                            "hiRes": "https://m.media-amazon.com/images/I/71p2DXkyaJL._AC_SL1500_.jpg",
                            "variant": "PT01",
                            "main": {
                                "https://m.media-amazon.com/images/I/71p2DXkyaJL._AC_SX569_.jpg": [
                                    "569",
                                    "569"
                                ],
                                "https://m.media-amazon.com/images/I/71p2DXkyaJL._AC_SY355_.jpg": [
                                    "355",
                                    "355"
                                ],
                                "https://m.media-amazon.com/images/I/71p2DXkyaJL._AC_SY450_.jpg": [
                                    "450",
                                    "450"
                                ],
                                "https://m.media-amazon.com/images/I/71p2DXkyaJL._AC_SX679_.jpg": [
                                    "679",
                                    "679"
                                ],
                                "https://m.media-amazon.com/images/I/71p2DXkyaJL._AC_SX522_.jpg": [
                                    "522",
                                    "522"
                                ],
                                "https://m.media-amazon.com/images/I/71p2DXkyaJL._AC_SX425_.jpg": [
                                    "425",
                                    "425"
                                ],
                                "https://m.media-amazon.com/images/I/71p2DXkyaJL._AC_SX466_.jpg": [
                                    "466",
                                    "466"
                                ]
                            }
                        },
                        {
                            "large": "https://m.media-amazon.com/images/I/51rir3HixDL._AC_.jpg",
                            "thumb": "https://m.media-amazon.com/images/I/51rir3HixDL._AC_US40_.jpg",
                            "hiRes": "https://m.media-amazon.com/images/I/71fWlV-SdwL._AC_SL1500_.jpg",
                            "variant": "PT02",
                            "main": {
                                "https://m.media-amazon.com/images/I/71fWlV-SdwL._AC_SX569_.jpg": [
                                    "569",
                                    "569"
                                ],
                                "https://m.media-amazon.com/images/I/71fWlV-SdwL._AC_SX425_.jpg": [
                                    "425",
                                    "425"
                                ],
                                "https://m.media-amazon.com/images/I/71fWlV-SdwL._AC_SX466_.jpg": [
                                    "466",
                                    "466"
                                ],
                                "https://m.media-amazon.com/images/I/71fWlV-SdwL._AC_SY355_.jpg": [
                                    "355",
                                    "355"
                                ],
                                "https://m.media-amazon.com/images/I/71fWlV-SdwL._AC_SY450_.jpg": [
                                    "450",
                                    "450"
                                ],
                                "https://m.media-amazon.com/images/I/71fWlV-SdwL._AC_SX679_.jpg": [
                                    "679",
                                    "679"
                                ],
                                "https://m.media-amazon.com/images/I/71fWlV-SdwL._AC_SX522_.jpg": [
                                    "522",
                                    "522"
                                ]
                            }
                        },
                        {
                            "large": "https://m.media-amazon.com/images/I/51xOzUkbEvL._AC_.jpg",
                            "thumb": "https://m.media-amazon.com/images/I/51xOzUkbEvL._AC_US40_.jpg",
                            "hiRes": "https://m.media-amazon.com/images/I/71lO7Lhd44L._AC_SL1500_.jpg",
                            "variant": "PT03",
                            "main": {
                                "https://m.media-amazon.com/images/I/71lO7Lhd44L._AC_SX425_.jpg": [
                                    "425",
                                    "425"
                                ],
                                "https://m.media-amazon.com/images/I/71lO7Lhd44L._AC_SX466_.jpg": [
                                    "466",
                                    "466"
                                ],
                                "https://m.media-amazon.com/images/I/71lO7Lhd44L._AC_SY355_.jpg": [
                                    "355",
                                    "355"
                                ],
                                "https://m.media-amazon.com/images/I/71lO7Lhd44L._AC_SX569_.jpg": [
                                    "569",
                                    "569"
                                ],
                                "https://m.media-amazon.com/images/I/71lO7Lhd44L._AC_SY450_.jpg": [
                                    "450",
                                    "450"
                                ],
                                "https://m.media-amazon.com/images/I/71lO7Lhd44L._AC_SX679_.jpg": [
                                    "679",
                                    "679"
                                ],
                                "https://m.media-amazon.com/images/I/71lO7Lhd44L._AC_SX522_.jpg": [
                                    "522",
                                    "522"
                                ]
                            }
                        },
                        {
                            "large": "https://m.media-amazon.com/images/I/41hOPjz9v4L._AC_.jpg",
                            "thumb": "https://m.media-amazon.com/images/I/41hOPjz9v4L._AC_US40_.jpg",
                            "hiRes": "https://m.media-amazon.com/images/I/71TXQVDkrFL._AC_SL1500_.jpg",
                            "variant": "PT04",
                            "main": {
                                "https://m.media-amazon.com/images/I/71TXQVDkrFL._AC_SX679_.jpg": [
                                    "679",
                                    "679"
                                ],
                                "https://m.media-amazon.com/images/I/71TXQVDkrFL._AC_SY450_.jpg": [
                                    "450",
                                    "450"
                                ],
                                "https://m.media-amazon.com/images/I/71TXQVDkrFL._AC_SY355_.jpg": [
                                    "355",
                                    "355"
                                ],
                                "https://m.media-amazon.com/images/I/71TXQVDkrFL._AC_SX522_.jpg": [
                                    "522",
                                    "522"
                                ],
                                "https://m.media-amazon.com/images/I/71TXQVDkrFL._AC_SX569_.jpg": [
                                    "569",
                                    "569"
                                ],
                                "https://m.media-amazon.com/images/I/71TXQVDkrFL._AC_SX466_.jpg": [
                                    "466",
                                    "466"
                                ],
                                "https://m.media-amazon.com/images/I/71TXQVDkrFL._AC_SX425_.jpg": [
                                    "425",
                                    "425"
                                ]
                            }
                        },
                        {
                            "large": "https://m.media-amazon.com/images/I/41ZncDfhPVL._AC_.jpg",
                            "thumb": "https://m.media-amazon.com/images/I/41ZncDfhPVL._AC_US40_.jpg",
                            "hiRes": "https://m.media-amazon.com/images/I/71UsnmaVHFL._AC_SL1500_.jpg",
                            "variant": "PT05",
                            "main": {
                                "https://m.media-amazon.com/images/I/71UsnmaVHFL._AC_SX679_.jpg": [
                                    "679",
                                    "679"
                                ],
                                "https://m.media-amazon.com/images/I/71UsnmaVHFL._AC_SX466_.jpg": [
                                    "466",
                                    "466"
                                ],
                                "https://m.media-amazon.com/images/I/71UsnmaVHFL._AC_SX425_.jpg": [
                                    "425",
                                    "425"
                                ],
                                "https://m.media-amazon.com/images/I/71UsnmaVHFL._AC_SX522_.jpg": [
                                    "522",
                                    "522"
                                ],
                                "https://m.media-amazon.com/images/I/71UsnmaVHFL._AC_SX569_.jpg": [
                                    "569",
                                    "569"
                                ],
                                "https://m.media-amazon.com/images/I/71UsnmaVHFL._AC_SY355_.jpg": [
                                    "355",
                                    "355"
                                ],
                                "https://m.media-amazon.com/images/I/71UsnmaVHFL._AC_SY450_.jpg": [
                                    "450",
                                    "450"
                                ]
                            }
                        },
                        {
                            "large": "https://m.media-amazon.com/images/I/41VLa4jZXnL._AC_.jpg",
                            "thumb": "https://m.media-amazon.com/images/I/41VLa4jZXnL._AC_US40_.jpg",
                            "hiRes": "https://m.media-amazon.com/images/I/71XmV2ug9iL._AC_SL1500_.jpg",
                            "variant": "PT06",
                            "main": {
                                "https://m.media-amazon.com/images/I/71XmV2ug9iL._AC_SX679_.jpg": [
                                    "679",
                                    "679"
                                ],
                                "https://m.media-amazon.com/images/I/71XmV2ug9iL._AC_SY450_.jpg": [
                                    "450",
                                    "450"
                                ],
                                "https://m.media-amazon.com/images/I/71XmV2ug9iL._AC_SX425_.jpg": [
                                    "425",
                                    "425"
                                ],
                                "https://m.media-amazon.com/images/I/71XmV2ug9iL._AC_SY355_.jpg": [
                                    "355",
                                    "355"
                                ],
                                "https://m.media-amazon.com/images/I/71XmV2ug9iL._AC_SX522_.jpg": [
                                    "522",
                                    "522"
                                ],
                                "https://m.media-amazon.com/images/I/71XmV2ug9iL._AC_SX569_.jpg": [
                                    "569",
                                    "569"
                                ],
                                "https://m.media-amazon.com/images/I/71XmV2ug9iL._AC_SX466_.jpg": [
                                    "466",
                                    "466"
                                ]
                            }
                        },
                        {
                            "large": "https://m.media-amazon.com/images/I/41Zxr3sCE4L._AC_.jpg",
                            "thumb": "https://m.media-amazon.com/images/I/41Zxr3sCE4L._AC_US40_.jpg",
                            "hiRes": "https://m.media-amazon.com/images/I/718ovCD3loL._AC_SL1500_.jpg",
                            "variant": "PT07",
                            "main": {
                                "https://m.media-amazon.com/images/I/718ovCD3loL._AC_SX679_.jpg": [
                                    "679",
                                    "679"
                                ],
                                "https://m.media-amazon.com/images/I/718ovCD3loL._AC_SX425_.jpg": [
                                    "425",
                                    "425"
                                ],
                                "https://m.media-amazon.com/images/I/718ovCD3loL._AC_SX466_.jpg": [
                                    "466",
                                    "466"
                                ],
                                "https://m.media-amazon.com/images/I/718ovCD3loL._AC_SX569_.jpg": [
                                    "569",
                                    "569"
                                ],
                                "https://m.media-amazon.com/images/I/718ovCD3loL._AC_SY355_.jpg": [
                                    "355",
                                    "355"
                                ],
                                "https://m.media-amazon.com/images/I/718ovCD3loL._AC_SX522_.jpg": [
                                    "522",
                                    "522"
                                ],
                                "https://m.media-amazon.com/images/I/718ovCD3loL._AC_SY450_.jpg": [
                                    "450",
                                    "450"
                                ]
                            }
                        }
                    ]
                },
                "heroImages": {
                    "Rose Gold&Red M": null
                },
                "enable360Map": [],
                "staticImages": {
                    "hoverZoomIcon": "https://m.media-amazon.com/images/G/01/img11/apparel/UX/DP/icon_zoom._CB485946671_.png",
                    "shoppableSceneViewProductsButton": "https://m.media-amazon.com/images/G/01/shopbylook/shoppable-images/view_products._CB427832024_.svg",
                    "zoomLensBackground": "https://m.media-amazon.com/images/G/01/apparel/rcxgs/tile._CB483369110_.gif",
                    "shoppableSceneDotHighlighted": "https://m.media-amazon.com/images/G/01/shopbylook/shoppable-images/dot_highlighted._CB649293510_.svg",
                    "zoomInCur": "https://m.media-amazon.com/images/G/01/detail-page/cursors/zoomIn._CB485921866_.cur",
                    "shoppableSceneSideSheetClose": "https://m.media-amazon.com/images/G/01/shopbylook/shoppable-images/close_x_white._CB404688921_.png",
                    "shoppableSceneBackToTopArrow": "https://m.media-amazon.com/images/G/01/shopbylook/shoppable-images/back_to_top_arrow._CB427936690_.svg",
                    "arrow": "https://m.media-amazon.com/images/G/01/javascripts/lib/popover/images/light/sprite-vertical-popover-arrow._CB485933082_.png",
                    "icon360V2": "https://m.media-amazon.com/images/G/01/HomeCustomProduct/imageBlock-360-thumbnail-icon-small._CB612115888_.png",
                    "zoomIn": "https://m.media-amazon.com/images/G/01/detail-page/cursors/zoom-in._CB485944643_.bmp",
                    "zoomOut": "https://m.media-amazon.com/images/G/01/detail-page/cursors/zoom-out._CB485943857_.bmp",
                    "videoThumbIcon": "https://m.media-amazon.com/images/G/01/Quarterdeck/en_US/images/video._CB485935537_SS40_.gif",
                    "spinnerNoLabel": "https://m.media-amazon.com/images/G/01/ui/loadIndicators/loading-large._CB485945288_.gif",
                    "zoomOutCur": "https://m.media-amazon.com/images/G/01/detail-page/cursors/zoomOut._CB485921725_.cur",
                    "videoSWFPath": "https://m.media-amazon.com/images/G/01/Quarterdeck/en_US/video/20110518115040892/Video._CB485981003_.swf",
                    "grabbing": "https://m.media-amazon.com/images/G/01/HomeCustomProduct/grabbingbox._CB485943551_.cur",
                    "shoppableSceneDot": "https://m.media-amazon.com/images/G/01/shopbylook/shoppable-images/dot._CB649293510_.svg",
                    "icon360": "https://m.media-amazon.com/images/G/01/HomeCustomProduct/360_icon_73x73v2._CB485971279_SS40_.png",
                    "grab": "https://m.media-amazon.com/images/G/01/HomeCustomProduct/grabbox._CB485922675_.cur",
                    "spinner": "https://m.media-amazon.com/images/G/01/ui/loadIndicators/loading-large_labeled._CB485921664_.gif"
                },
                "staticStrings": {
                    "dragToSpin": "Drag to Spin",
                    "videos": "Videos",
                    "video": "video",
                    "shoppableSceneTabsTitleT3": "Shop the collection",
                    "shoppableSceneTabsTitle": "Shop similar items",
                    "shoppableSceneTabsTitleT2": "Shop this style ",
                    "ivImageThumbnailLabelAnnounce": "Thumbnail image ###ivImageThumbnailIndex",
                    "rollOverToZoom": "Roll over image to zoom in",
                    "singleVideo": "VIDEO",
                    "watchVideosLabel": "Watch",
                    "clickSceneTagsToShopProducts": "Click the dots to see similar items",
                    "close": "Close",
                    "moreVideosLabel": "More videos",
                    "shoppableSceneViewProductsButton": "Shop similar items",
                    "images": "Images",
                    "watchMoreVideos": "Click to see more videos",
                    "shoppableSceneViewProductsButtonT2": "Shop this style ",
                    "shoppableSceneViewProductsButtonT1": "Shop the look",
                    "shoppableSceneViewProductsButtonT3": "Shop the collection",
                    "allMedia": "All Media",
                    "clickToExpand": "Click image to open expanded view",
                    "shoppableSceneTabsTitleT1": "Shop the look",
                    "playVideo": "Click to play video",
                    "shoppableSceneNoSuggestions": "No results available",
                    "touchToZoom": "Touch the image to zoom in",
                    "multipleVideos": "VIDEOS",
                    "shoppableSceneSeeMoreString": "See more",
                    "pleaseSelect": "Please select",
                    "clickForFullView": "Click to see full view",
                    "clickToZoom": "Click on image to zoom in"
                },
                "useChildVideos": true,
                "useClickZoom": false,
                "useHoverZoom": true,
                "useHoverZoomIpad": false,
                "visualDimensions": [
                    "color_name",
                    "size_name"
                ],
                "mainImageHeightPartitions": null,
                "mainImageMaxSizes": null,
                "heroFocalPoint": null,
                "showMagnifierOnHover": false,
                "disableHoverOnAltImages": false,
                "overrideAltImageClickAction": false,
                "naturalMainImageSize": null,
                "imgTagWrapperClasses": null,
                "prioritizeVideos": false,
                "usePeekHover": false,
                "fadeMagnifier": false,
                "repositionHeroImage": false,
                "heroVideoVariant": null,
                "videos": [
                    {
                        "creatorProfile": [],
                        "groupType": "IB_G1",
                        "aciContentId": "amzn1.vse.video.06d10524a9b44ba8bd9a14ad277851f0",
                        "altText": "",
                        "offset": "0",
                        "thumb": "https://m.media-amazon.com/images/I/51B10t9rh4L.SS40_BG85,85,85_BR-120_PKdp-play-icon-overlay__.jpg",
                        "durationSeconds": 15,
                        "marketPlaceID": "ATVPDKIKX0DER",
                        "isVideo": true,
                        "isHeroVideo": false,
                        "title": "Fitness Tracker Feature",
                        "languageCode": "en_US",
                        "holderId": "holder06d10524a9b44ba8bd9a14ad277851f0",
                        "url": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/3558f2ea-b6e5-4b36-8d82-b37b3e48d62e/default.jobtemplate.hls.m3u8",
                        "videoHeight": "1080",
                        "videoWidth": "1920",
                        "durationTimestamp": "00:15",
                        "rankingStrategy": "DEFAULT",
                        "slateUrl": "https://m.media-amazon.com/images/I/51B10t9rh4L.SX522_.jpg",
                        "minimumAge": 0,
                        "variant": "MAIN",
                        "slateHash": {
                            "extension": "jpg",
                            "physicalID": null,
                            "width": "640",
                            "height": "360"
                        },
                        "mediaObjectId": "06d10524a9b44ba8bd9a14ad277851f0",
                        "thumbUrl": "https://m.media-amazon.com/images/I/51B10t9rh4L.SS40_BG85,85,85_BR-120_PKdp-play-icon-overlay__.jpg"
                    },
                    {
                        "creatorProfile": [],
                        "groupType": "IB_G1",
                        "aciContentId": "amzn1.vse.video.062dff49bf3a48f0b33aedda68e987a5",
                        "altText": "",
                        "offset": "0",
                        "thumb": "https://m.media-amazon.com/images/I/71q7QiJtLfL.SS40_BG85,85,85_BR-120_PKdp-play-icon-overlay__.jpg",
                        "durationSeconds": 20,
                        "marketPlaceID": "ATVPDKIKX0DER",
                        "isVideo": true,
                        "isHeroVideo": false,
                        "title": "Smart Bracelet for Women",
                        "languageCode": "en_US",
                        "holderId": "holder062dff49bf3a48f0b33aedda68e987a5",
                        "url": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/5965d793-c208-4f17-8518-cdd7930c75a5/default.jobtemplate.hls.m3u8",
                        "videoHeight": "1080",
                        "videoWidth": "1920",
                        "durationTimestamp": "00:20",
                        "rankingStrategy": "DEFAULT",
                        "slateUrl": "https://m.media-amazon.com/images/I/71q7QiJtLfL.SX522_.jpg",
                        "minimumAge": 0,
                        "variant": "MAIN",
                        "slateHash": {
                            "extension": "jpg",
                            "physicalID": null,
                            "width": "1464",
                            "height": "600"
                        },
                        "mediaObjectId": "062dff49bf3a48f0b33aedda68e987a5",
                        "thumbUrl": "https://m.media-amazon.com/images/I/71q7QiJtLfL.SS40_BG85,85,85_BR-120_PKdp-play-icon-overlay__.jpg"
                    },
                    {
                        "creatorProfile": [],
                        "groupType": "IB_G2",
                        "aciContentId": "amzn1.vse.video.0d420fad19f645d8bb344b9f1ed9802e",
                        "altText": "",
                        "offset": "0",
                        "thumb": "https://m.media-amazon.com/images/I/91+VWOu+JIL.SS40_BG85,85,85_BR-120_PKdp-play-icon-overlay__.jpg",
                        "durationSeconds": 241,
                        "marketPlaceID": "ATVPDKIKX0DER",
                        "isVideo": true,
                        "isHeroVideo": false,
                        "title": "Fashion Meets Function | Waterproof Smart Bracelet for Women with Full Health Tracking",
                        "languageCode": "en_US",
                        "holderId": "holder0d420fad19f645d8bb344b9f1ed9802e",
                        "url": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/707c4a0e-2c60-42e7-ad11-6ca61a30299d/default.jobtemplate.hls.m3u8",
                        "videoHeight": "1080",
                        "videoWidth": "1920",
                        "durationTimestamp": "04:01",
                        "rankingStrategy": "DEFAULT",
                        "slateUrl": "https://m.media-amazon.com/images/I/91+VWOu+JIL.SX522_.jpg",
                        "minimumAge": 0,
                        "variant": "MAIN",
                        "slateHash": {
                            "extension": "jpg",
                            "physicalID": null,
                            "width": "2732",
                            "height": "2048"
                        },
                        "mediaObjectId": "0d420fad19f645d8bb344b9f1ed9802e",
                        "thumbUrl": "https://m.media-amazon.com/images/I/91+VWOu+JIL.SS40_BG85,85,85_BR-120_PKdp-play-icon-overlay__.jpg"
                    },
                    {
                        "creatorProfile": [],
                        "groupType": "IB_G2",
                        "aciContentId": "amzn1.vse.video.0654a7cbfd2e40a49eefd1d6ad7f4f94",
                        "altText": "",
                        "offset": "0",
                        "thumb": "https://m.media-amazon.com/images/I/51lVDs0aBzL.SS40_BG85,85,85_BR-120_PKdp-play-icon-overlay__.jpg",
                        "durationSeconds": 222,
                        "marketPlaceID": "ATVPDKIKX0DER",
                        "isVideo": true,
                        "isHeroVideo": false,
                        "title": "Track All Your Health Stats with Gorgeous Jewelry!",
                        "languageCode": "en_US",
                        "holderId": "holder0654a7cbfd2e40a49eefd1d6ad7f4f94",
                        "url": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/e5c512fd-6ddc-4396-8a9d-abfea6bf9b64/default.jobtemplate.hls.m3u8",
                        "videoHeight": "1080",
                        "videoWidth": "1920",
                        "durationTimestamp": "03:42",
                        "rankingStrategy": "DEFAULT",
                        "slateUrl": "https://m.media-amazon.com/images/I/51lVDs0aBzL.SX522_.jpg",
                        "minimumAge": 0,
                        "variant": "MAIN",
                        "slateHash": {
                            "extension": "jpg",
                            "physicalID": null,
                            "width": "640",
                            "height": "360"
                        },
                        "mediaObjectId": "0654a7cbfd2e40a49eefd1d6ad7f4f94",
                        "thumbUrl": "https://m.media-amazon.com/images/I/51lVDs0aBzL.SS40_BG85,85,85_BR-120_PKdp-play-icon-overlay__.jpg"
                    },
                    {
                        "creatorProfile": [],
                        "groupType": "IB_G2",
                        "aciContentId": "amzn1.vse.video.0f73768ebba64e36b51a5dfefad377aa",
                        "altText": "",
                        "offset": "0",
                        "thumb": "https://m.media-amazon.com/images/I/B1gopaoALNL.SS40_BG85,85,85_BR-120_PKdp-play-icon-overlay__.jpg",
                        "durationSeconds": 22,
                        "marketPlaceID": "ATVPDKIKX0DER",
                        "isVideo": true,
                        "isHeroVideo": false,
                        "title": "My review of Fitness Tracker with Sleep Tracking, 24\/7",
                        "languageCode": "en_US",
                        "holderId": "holder0f73768ebba64e36b51a5dfefad377aa",
                        "url": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/dd7756a8-fc8a-4ae3-9e26-39446460c92f/default.jobtemplate.hls.m3u8",
                        "videoHeight": "1080",
                        "videoWidth": "1920",
                        "durationTimestamp": "00:22",
                        "rankingStrategy": "DEFAULT",
                        "slateUrl": "https://m.media-amazon.com/images/I/B1gopaoALNL.SX522_.jpg",
                        "minimumAge": 0,
                        "variant": "MAIN",
                        "slateHash": {
                            "extension": "jpg",
                            "physicalID": null,
                            "width": "5712",
                            "height": "4284"
                        },
                        "mediaObjectId": "0f73768ebba64e36b51a5dfefad377aa",
                        "thumbUrl": "https://m.media-amazon.com/images/I/B1gopaoALNL.SS40_BG85,85,85_BR-120_PKdp-play-icon-overlay__.jpg"
                    },
                    {
                        "creatorProfile": [],
                        "groupType": "IB_G2",
                        "aciContentId": "amzn1.vse.video.0c52f131a75c49018ff8f02a52ef0c51",
                        "altText": "",
                        "offset": "0",
                        "thumb": "https://m.media-amazon.com/images/I/A1SEhnJuhEL.SS40_BG85,85,85_BR-120_PKdp-play-icon-overlay__.png",
                        "durationSeconds": 186,
                        "marketPlaceID": "ATVPDKIKX0DER",
                        "isVideo": true,
                        "isHeroVideo": false,
                        "title": "Watch this before you buy Sleep and fitness tracker",
                        "languageCode": "en_US",
                        "holderId": "holder0c52f131a75c49018ff8f02a52ef0c51",
                        "url": "https://m.media-amazon.com/images/S/vse-vms-transcoding-artifact-us-east-1-prod/62faee24-75d0-441d-941d-a2f2eb61127e/default.jobtemplate.hls.m3u8",
                        "videoHeight": "1080",
                        "videoWidth": "1916",
                        "durationTimestamp": "03:06",
                        "rankingStrategy": "DEFAULT",
                        "slateUrl": "https://m.media-amazon.com/images/I/A1SEhnJuhEL.SX522_.png",
                        "minimumAge": 0,
                        "variant": "MAIN",
                        "slateHash": {
                            "extension": "png",
                            "physicalID": null,
                            "width": "1280",
                            "height": "720"
                        },
                        "mediaObjectId": "0c52f131a75c49018ff8f02a52ef0c51",
                        "thumbUrl": "https://m.media-amazon.com/images/I/A1SEhnJuhEL.SS40_BG85,85,85_BR-120_PKdp-play-icon-overlay__.png"
                    }
                ],
                "videosData": null,
                "totalVideoCount": null,
                "title": "Zyee Syee Fitness Tracker with Sleep Tracking, 24\/7 Activity Tracker, Step Tracker, Heart Rate, Blood Oxygen, Stress Management, 5ATM Waterproof, No Subscription Fee for iOS &amp; Android",
                "airyConfigEnabled": false,
                "airyConfig": null,
                "vseVideoDataSourceTreatment": "T1",
                "mediaAsin": "B0FR21PT7Z",
                "parentAsin": "B0G25T88L2",
                "largeSCLVideoThumbnail": false,
                "displayVideoBanner": false,
                "useVSEVideos": true,
                "videoIngressCountText": null,
                "enableS2WithoutS1": false,
                "showNewMBLB": false,
                "showVideoThumbNail": null,
                "useTabbedImmersiveView": true,
                "dpRequestId": "9SYJXH7FTNWP7JP8BT7Y",
                "customerId": "",
                "contentWeblab": "",
                "contentWeblabTreatment": "",
                "dp60VideoThumbMap": null,
                "videoBackgroundChromefulMainView": "black",
                "altImages": null,
                "altImagesData": null,
                "img_dict": [
                    {
                        "hiRes": "https://m.media-amazon.com/images/I/71Ki-q+FxyL._AC_SL1500_.jpg",
                        "thumb": "https://m.media-amazon.com/images/I/41s-3JyJ4QL._AC_US40_.jpg",
                        "large": "https://m.media-amazon.com/images/I/41s-3JyJ4QL._AC_.jpg",
                        "main": {
                            "https://m.media-amazon.com/images/I/71Ki-q+FxyL._AC_SY355_.jpg": [
                                355,
                                355
                            ],
                            "https://m.media-amazon.com/images/I/71Ki-q+FxyL._AC_SY450_.jpg": [
                                450,
                                450
                            ],
                            "https://m.media-amazon.com/images/I/71Ki-q+FxyL._AC_SX425_.jpg": [
                                425,
                                425
                            ],
                            "https://m.media-amazon.com/images/I/71Ki-q+FxyL._AC_SX466_.jpg": [
                                466,
                                466
                            ],
                            "https://m.media-amazon.com/images/I/71Ki-q+FxyL._AC_SX522_.jpg": [
                                522,
                                522
                            ],
                            "https://m.media-amazon.com/images/I/71Ki-q+FxyL._AC_SX569_.jpg": [
                                569,
                                569
                            ],
                            "https://m.media-amazon.com/images/I/71Ki-q+FxyL._AC_SX679_.jpg": [
                                679,
                                679
                            ]
                        },
                        "variant": "MAIN",
                        "lowRes": null,
                        "shoppableScene": null,
                        "feedbackMetadata": null
                    },
                    {
                        "hiRes": "https://m.media-amazon.com/images/I/71p2DXkyaJL._AC_SL1500_.jpg",
                        "thumb": "https://m.media-amazon.com/images/I/51QfPYrHzJL._AC_US40_.jpg",
                        "large": "https://m.media-amazon.com/images/I/51QfPYrHzJL._AC_.jpg",
                        "main": {
                            "https://m.media-amazon.com/images/I/71p2DXkyaJL._AC_SY355_.jpg": [
                                355,
                                355
                            ],
                            "https://m.media-amazon.com/images/I/71p2DXkyaJL._AC_SY450_.jpg": [
                                450,
                                450
                            ],
                            "https://m.media-amazon.com/images/I/71p2DXkyaJL._AC_SX425_.jpg": [
                                425,
                                425
                            ],
                            "https://m.media-amazon.com/images/I/71p2DXkyaJL._AC_SX466_.jpg": [
                                466,
                                466
                            ],
                            "https://m.media-amazon.com/images/I/71p2DXkyaJL._AC_SX522_.jpg": [
                                522,
                                522
                            ],
                            "https://m.media-amazon.com/images/I/71p2DXkyaJL._AC_SX569_.jpg": [
                                569,
                                569
                            ],
                            "https://m.media-amazon.com/images/I/71p2DXkyaJL._AC_SX679_.jpg": [
                                679,
                                679
                            ]
                        },
                        "variant": "PT01",
                        "lowRes": null,
                        "shoppableScene": null,
                        "feedbackMetadata": null
                    },
                    {
                        "hiRes": "https://m.media-amazon.com/images/I/71fWlV-SdwL._AC_SL1500_.jpg",
                        "thumb": "https://m.media-amazon.com/images/I/51rir3HixDL._AC_US40_.jpg",
                        "large": "https://m.media-amazon.com/images/I/51rir3HixDL._AC_.jpg",
                        "main": {
                            "https://m.media-amazon.com/images/I/71fWlV-SdwL._AC_SY355_.jpg": [
                                355,
                                355
                            ],
                            "https://m.media-amazon.com/images/I/71fWlV-SdwL._AC_SY450_.jpg": [
                                450,
                                450
                            ],
                            "https://m.media-amazon.com/images/I/71fWlV-SdwL._AC_SX425_.jpg": [
                                425,
                                425
                            ],
                            "https://m.media-amazon.com/images/I/71fWlV-SdwL._AC_SX466_.jpg": [
                                466,
                                466
                            ],
                            "https://m.media-amazon.com/images/I/71fWlV-SdwL._AC_SX522_.jpg": [
                                522,
                                522
                            ],
                            "https://m.media-amazon.com/images/I/71fWlV-SdwL._AC_SX569_.jpg": [
                                569,
                                569
                            ],
                            "https://m.media-amazon.com/images/I/71fWlV-SdwL._AC_SX679_.jpg": [
                                679,
                                679
                            ]
                        },
                        "variant": "PT02",
                        "lowRes": null,
                        "shoppableScene": null,
                        "feedbackMetadata": null
                    },
                    {
                        "hiRes": "https://m.media-amazon.com/images/I/71lO7Lhd44L._AC_SL1500_.jpg",
                        "thumb": "https://m.media-amazon.com/images/I/51xOzUkbEvL._AC_US40_.jpg",
                        "large": "https://m.media-amazon.com/images/I/51xOzUkbEvL._AC_.jpg",
                        "main": {
                            "https://m.media-amazon.com/images/I/71lO7Lhd44L._AC_SY355_.jpg": [
                                355,
                                355
                            ],
                            "https://m.media-amazon.com/images/I/71lO7Lhd44L._AC_SY450_.jpg": [
                                450,
                                450
                            ],
                            "https://m.media-amazon.com/images/I/71lO7Lhd44L._AC_SX425_.jpg": [
                                425,
                                425
                            ],
                            "https://m.media-amazon.com/images/I/71lO7Lhd44L._AC_SX466_.jpg": [
                                466,
                                466
                            ],
                            "https://m.media-amazon.com/images/I/71lO7Lhd44L._AC_SX522_.jpg": [
                                522,
                                522
                            ],
                            "https://m.media-amazon.com/images/I/71lO7Lhd44L._AC_SX569_.jpg": [
                                569,
                                569
                            ],
                            "https://m.media-amazon.com/images/I/71lO7Lhd44L._AC_SX679_.jpg": [
                                679,
                                679
                            ]
                        },
                        "variant": "PT03",
                        "lowRes": null,
                        "shoppableScene": null,
                        "feedbackMetadata": null
                    },
                    {
                        "hiRes": "https://m.media-amazon.com/images/I/71TXQVDkrFL._AC_SL1500_.jpg",
                        "thumb": "https://m.media-amazon.com/images/I/41hOPjz9v4L._AC_US40_.jpg",
                        "large": "https://m.media-amazon.com/images/I/41hOPjz9v4L._AC_.jpg",
                        "main": {
                            "https://m.media-amazon.com/images/I/71TXQVDkrFL._AC_SY355_.jpg": [
                                355,
                                355
                            ],
                            "https://m.media-amazon.com/images/I/71TXQVDkrFL._AC_SY450_.jpg": [
                                450,
                                450
                            ],
                            "https://m.media-amazon.com/images/I/71TXQVDkrFL._AC_SX425_.jpg": [
                                425,
                                425
                            ],
                            "https://m.media-amazon.com/images/I/71TXQVDkrFL._AC_SX466_.jpg": [
                                466,
                                466
                            ],
                            "https://m.media-amazon.com/images/I/71TXQVDkrFL._AC_SX522_.jpg": [
                                522,
                                522
                            ],
                            "https://m.media-amazon.com/images/I/71TXQVDkrFL._AC_SX569_.jpg": [
                                569,
                                569
                            ],
                            "https://m.media-amazon.com/images/I/71TXQVDkrFL._AC_SX679_.jpg": [
                                679,
                                679
                            ]
                        },
                        "variant": "PT04",
                        "lowRes": null,
                        "shoppableScene": null,
                        "feedbackMetadata": null
                    },
                    {
                        "hiRes": "https://m.media-amazon.com/images/I/71UsnmaVHFL._AC_SL1500_.jpg",
                        "thumb": "https://m.media-amazon.com/images/I/41ZncDfhPVL._AC_US40_.jpg",
                        "large": "https://m.media-amazon.com/images/I/41ZncDfhPVL._AC_.jpg",
                        "main": {
                            "https://m.media-amazon.com/images/I/71UsnmaVHFL._AC_SY355_.jpg": [
                                355,
                                355
                            ],
                            "https://m.media-amazon.com/images/I/71UsnmaVHFL._AC_SY450_.jpg": [
                                450,
                                450
                            ],
                            "https://m.media-amazon.com/images/I/71UsnmaVHFL._AC_SX425_.jpg": [
                                425,
                                425
                            ],
                            "https://m.media-amazon.com/images/I/71UsnmaVHFL._AC_SX466_.jpg": [
                                466,
                                466
                            ],
                            "https://m.media-amazon.com/images/I/71UsnmaVHFL._AC_SX522_.jpg": [
                                522,
                                522
                            ],
                            "https://m.media-amazon.com/images/I/71UsnmaVHFL._AC_SX569_.jpg": [
                                569,
                                569
                            ],
                            "https://m.media-amazon.com/images/I/71UsnmaVHFL._AC_SX679_.jpg": [
                                679,
                                679
                            ]
                        },
                        "variant": "PT05",
                        "lowRes": null,
                        "shoppableScene": null,
                        "feedbackMetadata": null
                    },
                    {
                        "hiRes": "https://m.media-amazon.com/images/I/71XmV2ug9iL._AC_SL1500_.jpg",
                        "thumb": "https://m.media-amazon.com/images/I/41VLa4jZXnL._AC_US40_.jpg",
                        "large": "https://m.media-amazon.com/images/I/41VLa4jZXnL._AC_.jpg",
                        "main": {
                            "https://m.media-amazon.com/images/I/71XmV2ug9iL._AC_SY355_.jpg": [
                                355,
                                355
                            ],
                            "https://m.media-amazon.com/images/I/71XmV2ug9iL._AC_SY450_.jpg": [
                                450,
                                450
                            ],
                            "https://m.media-amazon.com/images/I/71XmV2ug9iL._AC_SX425_.jpg": [
                                425,
                                425
                            ],
                            "https://m.media-amazon.com/images/I/71XmV2ug9iL._AC_SX466_.jpg": [
                                466,
                                466
                            ],
                            "https://m.media-amazon.com/images/I/71XmV2ug9iL._AC_SX522_.jpg": [
                                522,
                                522
                            ],
                            "https://m.media-amazon.com/images/I/71XmV2ug9iL._AC_SX569_.jpg": [
                                569,
                                569
                            ],
                            "https://m.media-amazon.com/images/I/71XmV2ug9iL._AC_SX679_.jpg": [
                                679,
                                679
                            ]
                        },
                        "variant": "PT06",
                        "lowRes": null,
                        "shoppableScene": null,
                        "feedbackMetadata": null
                    },
                    {
                        "hiRes": "https://m.media-amazon.com/images/I/718ovCD3loL._AC_SL1500_.jpg",
                        "thumb": "https://m.media-amazon.com/images/I/41Zxr3sCE4L._AC_US40_.jpg",
                        "large": "https://m.media-amazon.com/images/I/41Zxr3sCE4L._AC_.jpg",
                        "main": {
                            "https://m.media-amazon.com/images/I/718ovCD3loL._AC_SY355_.jpg": [
                                355,
                                355
                            ],
                            "https://m.media-amazon.com/images/I/718ovCD3loL._AC_SY450_.jpg": [
                                450,
                                450
                            ],
                            "https://m.media-amazon.com/images/I/718ovCD3loL._AC_SX425_.jpg": [
                                425,
                                425
                            ],
                            "https://m.media-amazon.com/images/I/718ovCD3loL._AC_SX466_.jpg": [
                                466,
                                466
                            ],
                            "https://m.media-amazon.com/images/I/718ovCD3loL._AC_SX522_.jpg": [
                                522,
                                522
                            ],
                            "https://m.media-amazon.com/images/I/718ovCD3loL._AC_SX569_.jpg": [
                                569,
                                569
                            ],
                            "https://m.media-amazon.com/images/I/718ovCD3loL._AC_SX679_.jpg": [
                                679,
                                679
                            ]
                        },
                        "variant": "PT07",
                        "lowRes": null,
                        "shoppableScene": null,
                        "feedbackMetadata": null
                    }
                ]
            },
            "CustomerReviews": [
                {
                    "title": "Customer reviews",
                    "review_count": "11 global ratings",
                    "synthesisScore": "5 out of 5 stars",
                    "data": [
                        {
                            "star": "5 star",
                            "pct": "100%"
                        },
                        {
                            "star": "4 star",
                            "pct": "0%"
                        },
                        {
                            "star": "3 star",
                            "pct": "0%"
                        },
                        {
                            "star": "2 star",
                            "pct": "0%"
                        },
                        {
                            "star": "1 star",
                            "pct": "0%"
                        }
                    ]
                },
                {
                    "title": "Reviews with images",
                    "data": [
                        "https://m.media-amazon.com/images/I/61D-EmlVMyL.jpg",
                        "https://m.media-amazon.com/images/I/61vx5nxCVVL.jpg",
                        "https://m.media-amazon.com/images/I/718+oQXDWQL.jpg"
                    ]
                },
                [
                    {
                        "title": "Top reviews from the United States",
                        "data": [
                            {
                                "star": "5.0 out of 5 stars",
                                "subheadings": "Looks like Jewelry, Works like a tracker",
                                "date": "Reviewed in the United States on December 27, 2025",
                                "purchase_info": "Color: Rose Gold&Red|Size: M",
                                "review_text": "My girlfriend loves bracelet style jewelry and spends a lot of time at the gym, so I bought this fitness tracker for her birthday. It turned out to be an excellent choice. She uses it to track her workouts and daily activity, while it still looks nice enough to wear all day, even when going out. It is very light, comfortable, and she often forget she is wearing it. The battery lasts several days on one charge, and the waterproof design means rain or handwashing is not an issue.",
                                "review_media": [
                                    "https://m.media-amazon.com/images/I/61vx5nxCVVL.jpg",
                                    "https://m.media-amazon.com/images/I/61D-EmlVMyL.jpg",
                                    "https://m.media-amazon.com/images/I/718+oQXDWQL.jpg"
                                ]
                            },
                            {
                                "star": "5.0 out of 5 stars",
                                "subheadings": "PERFECT",
                                "date": "Reviewed in the United States on December 23, 2025",
                                "purchase_info": "Color: Rose Gold&Red|Size: M",
                                "review_text": "So cute! Love how sexy & sleek it is. I can’t wear screens at work but want to track my steps!",
                                "review_media": []
                            },
                            {
                                "star": "5.0 out of 5 stars",
                                "subheadings": "Greatest",
                                "date": "Reviewed in the United States on November 1, 2025",
                                "purchase_info": "",
                                "review_text": "The Smart bracelet for my daughter is so beautiful that she loves it so much.she wears it every day",
                                "review_media": []
                            },
                            {
                                "star": "5.0 out of 5 stars",
                                "subheadings": "Water-Resistant",
                                "date": "Reviewed in the United States on October 29, 2025",
                                "purchase_info": "Color: Rose Gold&Red|Size: M",
                                "review_text": "It also offers excellent water resistance, so you don't need to remove it when washing your hands or taking a shower.",
                                "review_media": []
                            },
                            {
                                "star": "5.0 out of 5 stars",
                                "subheadings": "Super pretty",
                                "date": "Reviewed in the United States on October 24, 2025",
                                "purchase_info": "",
                                "review_text": "Super pretty. I give it as a gift to me daughter, she love it, and like the pretty color. Very good smart bracelet. Love it.",
                                "review_media": []
                            },
                            {
                                "star": "5.0 out of 5 stars",
                                "subheadings": "Pretty and practical",
                                "date": "Reviewed in the United States on November 16, 2025",
                                "purchase_info": "Color: Rose Gold&Red|Size: M",
                                "review_text": "I'm so excited with it. I started using it yesterday love that it doubles as a peice of jewelry,  and a fitness tracker. So far it looks like it's pretty accurate. Quality looks amazing.  Highly recommend",
                                "review_media": []
                            },
                            {
                                "star": "5.0 out of 5 stars",
                                "subheadings": "Comfortable to wear",
                                "date": "Reviewed in the United States on October 29, 2025",
                                "purchase_info": "Color: Rose Gold&Red|Size: M",
                                "review_text": "The slim band and ergonomic curved design fit snugly around the wrist, allowing you to sleep comfortably without discomfort. The lightweight body is so comfortable that you might even forget you're wearing it.",
                                "review_media": []
                            },
                            {
                                "star": "5.0 out of 5 stars",
                                "subheadings": "The smart bracelet is beautiful and elegant.",
                                "date": "Reviewed in the United States on November 7, 2025",
                                "purchase_info": "",
                                "review_text": "This smart bracelet is stylish and effortlessly monitors your health and fitness. The app is easy to use and connects seamlessly to my phone. It tracks steps, heart rate, and sleep patterns with accurate sensors. Its lightweight design and long battery life make it perfect for everyday wear.",
                                "review_media": []
                            }
                        ]
                    }
                ]
            ],
            "AsinAndSku": {
                "currentAsin": "B0FR21PT7Z",
                "dimensionToAsinMap": {
                    "0_0": "B0FR21PT7Z"
                },
                "variationValues": {
                    "size_name": [
                        "M"
                    ],
                    "color_name": [
                        "Rose Gold&Red"
                    ]
                },
                "selectedVariationValues": {
                    "size_name": 0,
                    "color_name": 0
                },
                "deletedLandingAsinInfo": {
                    "dimValues": [
                        "Please Select",
                        "Please Select"
                    ],
                    "asin": "B0FR21PT7Z"
                },
                "dimensions": [
                    "color_name",
                    "size_name"
                ],
                "dimensionValuesDisplayData": {
                    "B0FR21PT7Z": [
                        "Rose Gold&Red",
                        "M"
                    ]
                },
                "variationDisplayLabels": {
                    "size_name": "Size",
                    "color_name": "Color"
                }
            },
            "specifications": [
                [
                    {
                        "name": "Operating System",
                        "value": "IOS, Android"
                    },
                    {
                        "name": "Memory Storage Capacity",
                        "value": "32 MB"
                    },
                    {
                        "name": "Special Feature",
                        "value": "Activity Tracker, Custom Activity Tracking, Lightweight, Multisport Tracker, Workout Gifts for Women"
                    },
                    {
                        "name": "Battery Capacity",
                        "value": "20 Milliamp Hours"
                    },
                    {
                        "name": "Connectivity Technology",
                        "value": "Bluetooth"
                    },
                    {
                        "name": "Wireless Communication Standard",
                        "value": "Bluetooth"
                    },
                    {
                        "name": "Battery Cell Composition",
                        "value": "Lithium Polymer"
                    },
                    {
                        "name": "GPS",
                        "value": "GPS Via Smartphone"
                    },
                    {
                        "name": "Shape",
                        "value": "Round"
                    },
                    {
                        "name": "Brand",
                        "value": "Zyee Syee"
                    }
                ]
            ],
            "aboutThisItem": [
                "24/7 Health Monitoring : The health tracker continuously tracks vital metrics including heart rate, blood oxygen levels, stress levels, heart rate variability, and offers female menstrual cycle prediction. Easily view detailed data in the APP for actionable insights to help you adjust your physical and mental rhythms. Supports Bluetooth 5.0 for seamless connectivity with iOS and Android devices. No subscription fees required when used with the APP",
                "Sleep Tracker: The sleep monitoring bracelet accurately identifies four sleep stages—light sleep, deep sleep, REM sleep, and wakefulness—and generates a sleep structure chart. View your sleep data in the app. It calculates a sleep score based on metrics like total sleep duration, deep sleep percentage, and wakefulness episodes, providing clear insights into your sleep quality to help you improve it",
                "All-Scenario Activity Tracking: The fitness bracelet features multiple activity modes like yoga, swimming, running, and cycling. It accurately records steps, distance, heart rate, and calories burned. Sync with the APP to view real-time data and achievements. This smart fitness band isn't just a tracker-it's a motivating companion that inspires you to explore new athletic possibilities. With 5ATM water resistance, it stays safe during swimming, diving, showers, and rainy days—no need to remove it",
                "Comfortable to Wear & Long Battery Life: Smart bracelet weighs just 11 grams and is only 5.6 millimeters thick. Its slim band and ergonomic curved design conform to the contours of your wrist for a comfortable fit. Even after 24 hours of use, your wrist won't feel pressure or soreness. Perfect for all-day wear during work, exercise, or sleep. With an extended battery life, a single charge provides 7-10 days of continuous use",
                "Luxurious Aesthetics: A jewelry fitness tracker ring blending fashion and functionality. Adorned with exquisite colored diamonds, its subtle luxury effortlessly elevates any look. Whether commuting to work, attending dinner parties, or enjoying active leisure, it showcases elegance and style. A thoughtful choice for daily accessories or gifts for friends, family, and loved ones"
            ],
            "PriceBlock": {
                "desktop_buybox_group_1": [
                    {
                        "displayPrice": "$62.90",
                        "priceAmount": 62.9,
                        "currencySymbol": "$",
                        "integerValue": "62",
                        "decimalSeparator": ".",
                        "fractionalValue": "90",
                        "symbolPosition": "left",
                        "hasSpace": false,
                        "showFractionalPartIfEmpty": true,
                        "offerListingId": "MDkt0VKSUJeaCX3yME7O6oCrgyPkK5ob2JdgOOZdaZPGL%2BuRgU1aTKNGOHVeJEW95pvIDqd3u%2FIcFqgV6DamhFObh9fAVeG9z%2BlbqENa9A6fmT5gk%2FB3Q9%2BDXB4WBy482jjLxpPCitQVgR10u7GDnrNfDtCPCefdY%2BIDOgsPlUX7ywUhxdBSjPN18HREycHa",
                        "locale": "en-US",
                        "buyingOptionType": "NEW",
                        "aapiBuyingOptionIndex": 0
                    }
                ],
                "Typical price": "$86.66"
            },
            "ProductDescription": "<div class=\"celwidget pd_rd_w-cHRlX pd................"
            "DescImg": [
                "https://m.media-amazon.com/images/S/aplus-media-library-service-media/be83bbc4-c542-472d-8205-f58cff035484.__CR0,0,1464,600_PT0_SX1464_V1___.jpg",
                "https://m.media-amazon.com/images/S/aplus-media-library-service-media/7dcfea00-362e-4e6f-a5af-e1f2982c719b.__CR0,0,1464,600_PT0_SX1464_V1___.jpg",
                "https://m.media-amazon.com/images/S/aplus-media-library-service-media/e7e007eb-2a17-429d-ad72-96c2141a7bc7.__CR0,0,1464,600_PT0_SX1464_V1___.jpg",
                "https://m.media-amazon.com/images/S/aplus-media-library-service-media/f44bb8f1-173d-4cb0-86b8-1a3783a3561d.__CR0,0,1464,600_PT0_SX1464_V1___.jpg",
                "https://m.media-amazon.com/images/S/aplus-media-library-service-media/cebe2ff4-4056-4a99-998c-e18b9ca4e74d.__CR0,0,1464,600_PT0_SX1464_V1___.jpg",
                "https://m.media-amazon.com/images/S/aplus-media-library-service-media/18b64c9d-4cf6-4a94-8fb9-31ef3ae5579e.__CR0,0,1464,600_PT0_SX1464_V1___.jpg",
                "https://m.media-amazon.com/images/S/aplus-media-library-service-media/e726331a-1b77-417b-bf41-403f1979579c.__CR0,0,1464,600_PT0_SX1464_V1___.jpg",
                "https://m.media-amazon.com/images/S/aplus-media-library-service-media/e5d548d8-eaaf-4342-ba89-3be67f27c8fe.__CR0,0,1464,600_PT0_SX1464_V1___.jpg",
                "https://m.media-amazon.com/images/S/aplus-media-library-service-media/20a94f5d-f774-45d8-b736-8ced5fec60c4.__CR0,0,1464,600_PT0_SX1464_V1___.jpg",
                "https://m.media-amazon.com/images/S/aplus-media-library-service-media/09e6f3c4-0d09-46fb-8287-581c5c0821e8.__CR0,0,1464,600_PT0_SX1464_V1___.jpg",
                "https://m.media-amazon.com/images/S/aplus-media-library-service-media/097143b0-2231-4d4a-ab9c-a2f32f80e6c5.__CR0,0,1464,600_PT0_SX1464_V1___.jpg",
                "https://m.media-amazon.com/images/S/aplus-media-library-service-media/99c986db-e7c9-4ed2-bd84-9fff39c62457.__CR0,0,1464,600_PT0_SX1464_V1___.jpg",
                "https://m.media-amazon.com/images/S/aplus-media-library-service-media/05fe540e-0d32-4e82-8288-80d5db54cc01.__CR0,0,1464,600_PT0_SX1464_V1___.jpg"
            ]
        },
        "_ddf": "fb",
        "format_check": "ok"
    },
    "error": "",
    "secache": "fcd35ae47a91e697fa8ea1ee2849093a",
    "secache_time": 1766985589,
    "secache_date": "2025-12-29 13:19:49",
    "reason": "",
    "error_code": "0000",
    "cache": 0,
    "api_info": "today:48 max:10000 all[311=48+54+212];expires:2030-10-30",
    "execution_time": "3.49",
    "server_time": "Beijing/2025-12-29 13:19:49",
    "client_ip": "111.76.134.50",
    "call_args": {
        "num_iid": "B0FR21PT7Z"
    },
    "api_type": "amazon",
    "translate_language": "zh-CN",
    "translate_engine": "baidu",
    "server_memory": "3.8MB",
    "request_id": "gw-1.69520f726d832",
    "last_id": "delay"
}
异常示例
相关资料
错误码解释
状态代码(error_code) 状态信息 详细描述 是否收费
0000success接口调用成功并返回相关数据
2000Search success but no result接口访问成功,但是搜索没有结果
4000Server internal error服务器内部错误
4001Network error网络错误
4002Target server error目标服务器错误
4003Param error用户输入参数错误忽略
4004Account not found用户帐号不存在忽略
4005Invalid authentication credentials授权失败忽略
4006API stopped您的当前API已停用忽略
4007Account stopped您的账户已停用忽略
4008API rate limit exceeded并发已达上限忽略
4009API maintenanceAPI维护中忽略
4010API not found with these valuesAPI不存在忽略
4012Please add api first请先添加api忽略
4013Number of calls exceeded调用次数超限忽略
4014Missing url param参数缺失忽略
4015Wrong pageToken参数pageToken有误忽略
4016Insufficient balance余额不足忽略
4017timeout error请求超时
5000unknown error未知错误
API 工具
如何获得此API
立即开通 有疑问联系客服QQ:QQ:3142401606 3142401606 万邦科技企业微信