万邦淘宝/天猫获得淘宝app商品详情原数据 API 返回值说明

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

taobao.item_get_app(Ver:4.0.3-7.0)

  • taobao.item_get_app-1.0.0-6.0.html
  • taobao.item_get_app-1.0.0-7.0.html
  • taobao.item_get_app-2.0.0-1.0.html
  • taobao.item_get_app-2.0.0-2.0.html
  • taobao.item_get_app-2.0.0-3.0.html
  • taobao.item_get_app-2.0.0-7.0.html
  • taobao.item_get_app-3.0.0-7.0.html
  • taobao.item_get_app-4.0.0-7.0.html
  • taobao.item_get_app-4.0.1-7.0.html
  • taobao.item_get_app-4.0.2-7.0.html
  • taobao.item_get_app-4.0.3-7.0.html
  • 公共参数

    请求地址: https://api-gw.onebound.cn/taobao/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=520813250866

    参数说明:num_iid:淘宝商品ID

    响应参数

    Version:4.0.3-7.0 Date:2024-4-2

    名称 类型 必须 示例值 描述
    item
    Mix 1 获得淘宝app商品详情原数据
    请求示例
    	
    -- 请求示例 url 默认请求参数已经URL编码处理
    curl -i "https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866"
    
    <?php
    
    // 请求示例 url 默认请求参数已经URL编码处理
    // 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.onebound.cn/help/demo/sdk/demo-sign.php
    $method = "GET";
    $url = "https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866";
    $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" =>"taobao",
    	                "api_name" =>"item_get_app",
    	                "api_params"=>array (
      'num_iid' => '520813250866',
    )
                    )
                );
     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/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866";
    		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/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866";
    	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/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866"
    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/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866", 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/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json'
      },
      body: JSON.stringify({"num_iid":"520813250866"})// 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":"taobao",
         "api_name" : "item_get_app",
         "api_params": {"num_iid":"520813250866"}//num_iid=520813250866,#具体参数请参考文档说明
         },
         function(e){
            document.querySelector("#api_data_box").innerHTML=JSON.stringify(e)
         }
    );
    </script>
    require "net/http"
    require "uri"
    url = URI("https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866")
    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/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866")!
    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/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866"];
    
    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/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866";
      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/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866");
             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/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866", (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/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866")
        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/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866")?;
        let mut content = String::new();
        resp.read_to_string(&mut content)?;
    
        println!("{}", content);
    
        Ok(())
    }
    
    
    library(httr)
    r <- GET("https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866")
    content(r)
    url = "https://api-gw.onebound.cn/taobao/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=520813250866";
    response = webread(url);
    disp(response);
    
    响应示例
    {
        "item": {
            "apiStack": {
                "item": {
                    "sellCount": "1万+",
                    "skuText": "配送至:稠城街道,请选择颜色分类",
                    "images": [
                        "https://img.alicdn.com/imgextra/i2/2089100916/O1CN01cieIw81IdZjsA34XM_!!2089100916.jpg",
                        "https://img.alicdn.com/imgextra/i4/2089100916/O1CN01S3XeWa1IdZi0xNuOb_!!2089100916.jpg",
                        "https://img.alicdn.com/imgextra/i4/2089100916/O1CN01gUKQdS1IdZhxD7pGp_!!2089100916.jpg",
                        "https://img.alicdn.com/imgextra/i3/2089100916/O1CN01WCVIY01IdZhxC807u_!!2089100916.jpg",
                        "https://img.alicdn.com/imgextra/i1/2089100916/O1CN01IBDtrK1IdZaJ9EbIQ_!!2089100916.png"
                    ],
                    "videos": [
                        {
                            "url": "https://cloud.video.taobao.com/play/u/2089100916/p/2/e/6/t/1/443405966056.mp4?appKey=38829",
                            "type": "3",
                            "videoThumbnailURL": "https://img.alicdn.com/imgextra/i2/2089100916/O1CN01cieIw81IdZjsA34XM_!!2089100916.jpg",
                            "itemId": "613530042191",
                            "spatialVideoDimension": "3:4",
                            "videoId": "443405966056",
                            "weexRecommendUrl": "https://market.m.taobao.com/apps/market/detailrax/recommend-items.html?spm=a2116h.app.0.0.16d957e9U2bxVj&wh_weex=true&itemId=613530042191",
                            "actionEvent": {
                                "openUrlEventArgs": {
                                    "enableUserTrackEvent": "true",
                                    "userTrackArgs": {
                                        "page": "Page_Detail",
                                        "type": "userTrack",
                                        "item_id": "613530042191",
                                        "arg1": "Page_Detail_Videos_Dx_Skip",
                                        "video_id": "443405966056"
                                    }
                                },
                                "exposureArgs": {
                                    "item_id": "613530042191",
                                    "video_id": "443405966056"
                                }
                            }
                        }
                    ],
                    "extraMap": [
    
                    ],
                    "descType": "2",
                    "infoText": [
    
                    ],
                    "itemId": "613530042191",
                    "showShopActivitySize": "2",
                    "spuId": "1177114828",
                    "title": "Dyson戴森V11 Fluffy无线吸尘器大户型大吸力除螨家用",
                    "titleIcon": "//img.alicdn.com/tfs/TB1SMG7nnvI8KJjSspjXXcgjXXa-78-36.png?getAvatar=avatar",
                    "vagueSellCount": "1万+",
                    "containerDimension": "3:4",
                    "shareItemLink": "https://item.taobao.com/item.htm?id=613530042191",
                    "wxShareUrl": "https://new.m.taobao.com/detail.htm?id=613530042191",
                    "h5ItemUrl": "https://new.m.taobao.com/detail.htm?id=613530042191&hybrid=true"
                },
                "delivery": {
                    "addressWeexUrl": "https://market.m.taobao.com/apps/market/detailrax/address-picker.html?spm=a2116h.app.0.0.16d957e9nDYOzv&wh_weex=true",
                    "from": "浙江嘉兴",
                    "to": "稠城街道",
                    "areaId": "330782001",
                    "postage": "快递:  免运费",
                    "showAreaChooser": "true",
                    "extras": {
                        "PostTime": {
                            "icon": "//gw.alicdn.com/tfs/TB1FfvzLVT7gK0jSZFpXXaTkpXa-82-24.png",
                            "text": "24:00前付款,承诺4月4日送达,晚到必赔",
                            "link": "//h5.m.taobao.com/guoguo/cn-league/index.html?serviceIds=84,400",
                            "args": {
                                "timingBizType": "promise_sign",
                                "timingRenderType": "多日达",
                                "timingAbExpress": "true",
                                "timingPromise": "true",
                                "tmallDelivery": "false",
                                "timingAbServName": "多日达",
                                "timingAbExpId": "-1"
                            }
                        },
                        "ReceiveTime": {
                            "icon": "//gw.alicdn.com/tfs/TB1FfvzLVT7gK0jSZFpXXaTkpXa-82-24.png",
                            "text": "24:00前付款,承诺4月4日送达,晚到必赔",
                            "link": "//h5.m.taobao.com/guoguo/cn-league/index.html?serviceIds=84,400",
                            "args": {
                                "timingBizType": "promise_sign",
                                "timingRenderType": "多日达",
                                "timingAbExpress": "true",
                                "timingPromise": "true",
                                "tmallDelivery": "false",
                                "timingAbServName": "多日达",
                                "timingAbExpId": "-1"
                            }
                        }
                    },
                    "areaSell": "true",
                    "completedTo": "金华市 义乌市 稠城街道",
                    "overseaContraBandFlag": "false"
                },
                "trade": {
                    "buyEnable": "true",
                    "cartEnable": "true",
                    "buyParam": {
                        "areaId": "330782001"
                    },
                    "cartParam": {
                        "areaId": "330782001"
                    },
                    "hintBanner": [
    
                    ],
                    "cartJumpUrl": "https://h5.m.taobao.com/awp/base/cart.htm",
                    "tradeParams": [
    
                    ],
                    "isWap": "false",
                    "useWap": "false",
                    "isBanSale4Oversea": "false"
                },
                "price": {
                    "price": {
                        "priceText": "4599",
                        "type": "2",
                        "sugProm": "false",
                        "showTitle": "false"
                    },
                    "transmitPrice": {
                        "priceText": "4599",
                        "sugProm": "false",
                        "showTitle": "false"
                    },
                    "priceTip": "享3期免息,可免105.78元,每期1533元(每日51.1元)",
                    "shopPromTitle": "促销",
                    "shopProm": [
                        {
                            "activityId": "0",
                            "iconText": "积分",
                            "title": "购买可得2299积分",
                            "content": [
                                "购买可得2299积分"
                            ],
                            "type": "5"
                        }
                    ]
                },
                "buyer": [
    
                ],
                "seller": {
                    "sellerId": "2089100916",
                    "shopId": "111481369",
                    "shopIcon": "//img.alicdn.com/imgextra//c6/1b/TB1b9SmFVXXXXXxXFXXwu0bFXXX.png",
                    "userId": "2089100916",
                    "sellerType": "B",
                    "shopName": "dyson戴森官方旗舰店",
                    "shopUrl": "//shop.m.taobao.com/shop/shop_index.htm?user_id=2089100916&item_id=613530042191",
                    "evaluates3": [
                        {
                            "titleColor": "#ffffff",
                            "scoreTextColor": "#ffffff",
                            "title": "宝贝描述",
                            "score": "4.8 ",
                            "type": "desc",
                            "level": "1",
                            "levelText": "高",
                            "levelTextColor": "#ffffff"
                        },
                        {
                            "titleColor": "#ffffff",
                            "scoreTextColor": "#ffffff",
                            "title": "卖家服务",
                            "score": "4.8 ",
                            "type": "serv",
                            "level": "1",
                            "levelText": "高",
                            "levelTextColor": "#ffffff"
                        },
                        {
                            "titleColor": "#ffffff",
                            "scoreTextColor": "#ffffff",
                            "title": "物流服务",
                            "score": "4.9 ",
                            "type": "post",
                            "level": "1",
                            "levelText": "高",
                            "levelTextColor": "#ffffff"
                        }
                    ]
                },
                "newdetail": [
    
                ],
                "priceSectionData": {
                    "price": {
                        "priceMoney": "459900",
                        "priceText": "4599",
                        "priceViews": [
                            {
                                "humpInteger": "4599"
                            }
                        ]
                    },
                    "styleTye": "0",
                    "priceType": "origin_price",
                    "promotionHeightLevel": "0"
                },
                "skuBase": {
                    "skus": [
                        {
                            "skuId": "5377597494439",
                            "propPath": "1627207:3105514489"
                        }
                    ],
                    "props": [
                        {
                            "pid": "1627207",
                            "name": "颜色分类",
                            "nameDesc": "(1)",
                            "hasImage": "true",
                            "values": [
                                {
                                    "vid": "3105514489",
                                    "name": "V11 Fluffy.",
                                    "image": "https://gw.alicdn.com/bao/uploaded/i1/2089100916/O1CN01z516vz1IdZhmlXQ7H_!!2089100916.jpg",
                                    "sortOrder": "0"
                                }
                            ]
                        }
                    ]
                },
                "skuCore": {
                    "sku2info": {
                        "0": {
                            "price": {
                                "priceMoney": "459900",
                                "priceText": "4599",
                                "showTitle": "false",
                                "sugProm": "false"
                            },
                            "quantity": "200",
                            "quantityText": "有货",
                            "moreQuantity": "true",
                            "quantityCheckTransParams": {
                                "cipherQuantity": "66Bqmk/+a2p0bfB6pQVbzyMeCG/sqvqLY9IOb9s0sQI="
                            }
                        },
                        "5377597494439": {
                            "price": {
                                "priceMoney": "459900",
                                "priceText": "4599",
                                "showTitle": "false",
                                "sugProm": "false"
                            },
                            "quantity": "200",
                            "quantityText": "有货",
                            "moreQuantity": "true",
                            "quantityCheckTransParams": {
                                "cipherQuantity": "66Bqmk/+a2p0bfB6pQVbzxSwfQpFFXVGCZHPY7WKSj0="
                            },
                            "logisticsTime": "24:00前付款,承诺4月4日送达,晚到必赔"
                        }
                    },
                    "skuBuy": {
                        "buyPattern": {
                            "title": "购买方式",
                            "type": [
                                {
                                    "desc": "立即购买",
                                    "bizId": "normal",
                                    "selected": "true"
                                },
                                {
                                    "desc": "以旧换新",
                                    "bizId": "renew",
                                    "selected": "false",
                                    "okBtnText": "通过\"以旧换新\"购买商品",
                                    "buyUrl": "poplayer://socialrenews?itemId=613530042191",
                                    "badgeDesc": "最高抵65元"
                                }
                            ]
                        }
                    }
                },
                "skuVertical": [
    
                ],
                "services": {
                    "standardServiceV2": [
                        {
                            "title": "保障服务",
                            "items": [
                                {
                                    "uniqueServices": [
                                        {
                                            "autoSelect": "false",
                                            "uniqueId": "5131200493022",
                                            "name": "1年",
                                            "attributeStr": ""
                                        },
                                        {
                                            "autoSelect": "false",
                                            "uniqueId": "5131200493023",
                                            "name": "2年",
                                            "attributeStr": ""
                                        },
                                        {
                                            "autoSelect": "false",
                                            "uniqueId": "5131200493024",
                                            "name": "3年",
                                            "attributeStr": ""
                                        }
                                    ],
                                    "serviceCode": "MIANFEIHUANXIN301A",
                                    "serviceId": "743850903261",
                                    "autoSelect": "false",
                                    "mustSelect": "false",
                                    "name": "天猫只换不修",
                                    "isvService": "false",
                                    "desc": "(性能故障,免费换新)",
                                    "extraDisplayName": "性能故障,免费换新",
                                    "standardPresentationV2": "true",
                                    "action": "服务说明",
                                    "actionLink": "https://pages.tmall.com/wow/fuwu/act/service-intro?serviceItemIdentity=743850903261&location=330782001",
                                    "groupName": "保障服务"
                                },
                                {
                                    "uniqueServices": [
                                        {
                                            "autoSelect": "false",
                                            "uniqueId": "5069832464498",
                                            "name": "二年",
                                            "attributeStr": ""
                                        },
                                        {
                                            "autoSelect": "false",
                                            "uniqueId": "5069832464496",
                                            "name": "三年",
                                            "attributeStr": ""
                                        }
                                    ],
                                    "serviceCode": "PINGTAIQUANMIANBAOXIU846A",
                                    "serviceId": "733008383026",
                                    "autoSelect": "false",
                                    "mustSelect": "false",
                                    "name": "天猫全面保修",
                                    "isvService": "false",
                                    "desc": "(意外+性能故障维修)",
                                    "extraDisplayName": "意外+性能故障维修",
                                    "standardPresentationV2": "true",
                                    "action": "服务说明",
                                    "actionLink": "https://market.m.taobao.com/app/aser/service-intro-webapp/index.html?serviceItemIdentity=733008383026&location=330782001",
                                    "groupName": "保障服务"
                                },
                                {
                                    "uniqueServices": [
                                        {
                                            "autoSelect": "false",
                                            "uniqueId": "5153246568063",
                                            "name": "一年",
                                            "attributeStr": ""
                                        },
                                        {
                                            "autoSelect": "false",
                                            "uniqueId": "5153246568067",
                                            "name": "二年",
                                            "attributeStr": ""
                                        },
                                        {
                                            "autoSelect": "false",
                                            "uniqueId": "5153246568065",
                                            "name": "三年",
                                            "attributeStr": ""
                                        },
                                        {
                                            "autoSelect": "false",
                                            "uniqueId": "5153246568069",
                                            "name": "四年",
                                            "attributeStr": ""
                                        }
                                    ],
                                    "serviceCode": "PINGTAIYANZHANGBAOXIU923A",
                                    "serviceId": "747728399078",
                                    "autoSelect": "false",
                                    "mustSelect": "false",
                                    "name": "天猫延长保修",
                                    "isvService": "false",
                                    "desc": "(性能故障延长维修)",
                                    "extraDisplayName": "性能故障延长维修",
                                    "standardPresentationV2": "true",
                                    "action": "服务说明",
                                    "actionLink": "https://market.m.taobao.com/app/aser/service-intro-webapp/index.html?serviceItemIdentity=747728399078&location=330782001",
                                    "groupName": "保障服务"
                                },
                                {
                                    "uniqueServices": [
                                        {
                                            "autoSelect": "false",
                                            "uniqueId": "5236334822077",
                                            "name": "二年",
                                            "attributeStr": ""
                                        },
                                        {
                                            "autoSelect": "false",
                                            "uniqueId": "5236334822076",
                                            "name": "三年",
                                            "attributeStr": ""
                                        }
                                    ],
                                    "serviceCode": "PINGTAIYIWAIBAOXIU675A",
                                    "serviceId": "731470865171",
                                    "autoSelect": "false",
                                    "mustSelect": "false",
                                    "name": "天猫意外保修",
                                    "isvService": "false",
                                    "desc": "(意外故障平台维修)",
                                    "extraDisplayName": "意外故障平台维修",
                                    "standardPresentationV2": "true",
                                    "action": "服务说明",
                                    "actionLink": "https://market.m.taobao.com/app/aser/service-intro-webapp/index.html?serviceItemIdentity=731470865171&location=330782001",
                                    "groupName": "保障服务"
                                }
                            ]
                        }
                    ],
                    "sku2StandardServiceV2": {
                        "0": {
                            "733008383026:5069832464498": {
                                "uniqueId": "5069832464498",
                                "serviceId": "733008383026",
                                "price": "18060",
                                "priceText": "180.6",
                                "free": "false",
                                "cells": "true"
                            },
                            "733008383026:5069832464496": {
                                "uniqueId": "5069832464496",
                                "serviceId": "733008383026",
                                "price": "19880",
                                "priceText": "198.8",
                                "free": "false",
                                "cells": "true"
                            },
                            "747728399078:5153246568063": {
                                "uniqueId": "5153246568063",
                                "serviceId": "747728399078",
                                "price": "8400",
                                "priceText": "84",
                                "free": "false",
                                "cells": "true"
                            },
                            "743850903261:5131200493023": {
                                "uniqueId": "5131200493023",
                                "serviceId": "743850903261",
                                "price": "23400",
                                "priceText": "234",
                                "free": "false",
                                "desc": "(快速响应 换新保障)",
                                "cells": "false"
                            },
                            "743850903261:5131200493022": {
                                "uniqueId": "5131200493022",
                                "serviceId": "743850903261",
                                "price": "11700",
                                "priceText": "117",
                                "free": "false",
                                "desc": "(快速响应 换新保障)",
                                "cells": "false"
                            },
                            "747728399078:5153246568069": {
                                "uniqueId": "5153246568069",
                                "serviceId": "747728399078",
                                "price": "21000",
                                "priceText": "210",
                                "free": "false",
                                "cells": "true"
                            },
                            "731470865171:5236334822077": {
                                "uniqueId": "5236334822077",
                                "serviceId": "731470865171",
                                "price": "21000",
                                "priceText": "210",
                                "free": "false",
                                "cells": "true"
                            },
                            "743850903261:5131200493024": {
                                "uniqueId": "5131200493024",
                                "serviceId": "743850903261",
                                "price": "29200",
                                "priceText": "292",
                                "free": "false",
                                "desc": "(快速响应 换新保障)",
                                "cells": "false"
                            },
                            "731470865171:5236334822076": {
                                "uniqueId": "5236334822076",
                                "serviceId": "731470865171",
                                "price": "22900",
                                "priceText": "229",
                                "free": "false",
                                "cells": "true"
                            },
                            "747728399078:5153246568065": {
                                "uniqueId": "5153246568065",
                                "serviceId": "747728399078",
                                "price": "16100",
                                "priceText": "161",
                                "free": "false",
                                "cells": "true"
                            },
                            "747728399078:5153246568067": {
                                "uniqueId": "5153246568067",
                                "serviceId": "747728399078",
                                "price": "11600",
                                "priceText": "116",
                                "free": "false",
                                "cells": "true"
                            }
                        },
                        "5377597494439": {
                            "733008383026:5069832464498": {
                                "uniqueId": "5069832464498",
                                "serviceId": "733008383026",
                                "price": "18060",
                                "priceText": "180.6",
                                "free": "false",
                                "cells": "true"
                            },
                            "733008383026:5069832464496": {
                                "uniqueId": "5069832464496",
                                "serviceId": "733008383026",
                                "price": "19880",
                                "priceText": "198.8",
                                "free": "false",
                                "cells": "true"
                            },
                            "747728399078:5153246568063": {
                                "uniqueId": "5153246568063",
                                "serviceId": "747728399078",
                                "price": "8400",
                                "priceText": "84",
                                "free": "false",
                                "cells": "true"
                            },
                            "743850903261:5131200493023": {
                                "uniqueId": "5131200493023",
                                "serviceId": "743850903261",
                                "price": "23400",
                                "priceText": "234",
                                "free": "false",
                                "desc": "(快速响应 换新保障)",
                                "cells": "false"
                            },
                            "743850903261:5131200493022": {
                                "uniqueId": "5131200493022",
                                "serviceId": "743850903261",
                                "price": "11700",
                                "priceText": "117",
                                "free": "false",
                                "desc": "(快速响应 换新保障)",
                                "cells": "false"
                            },
                            "747728399078:5153246568069": {
                                "uniqueId": "5153246568069",
                                "serviceId": "747728399078",
                                "price": "21000",
                                "priceText": "210",
                                "free": "false",
                                "cells": "true"
                            },
                            "731470865171:5236334822077": {
                                "uniqueId": "5236334822077",
                                "serviceId": "731470865171",
                                "price": "21000",
                                "priceText": "210",
                                "free": "false",
                                "cells": "true"
                            },
                            "743850903261:5131200493024": {
                                "uniqueId": "5131200493024",
                                "serviceId": "743850903261",
                                "price": "29200",
                                "priceText": "292",
                                "free": "false",
                                "desc": "(快速响应 换新保障)",
                                "cells": "false"
                            },
                            "731470865171:5236334822076": {
                                "uniqueId": "5236334822076",
                                "serviceId": "731470865171",
                                "price": "22900",
                                "priceText": "229",
                                "free": "false",
                                "cells": "true"
                            },
                            "747728399078:5153246568065": {
                                "uniqueId": "5153246568065",
                                "serviceId": "747728399078",
                                "price": "16100",
                                "priceText": "161",
                                "free": "false",
                                "cells": "true"
                            },
                            "747728399078:5153246568067": {
                                "uniqueId": "5153246568067",
                                "serviceId": "747728399078",
                                "price": "11600",
                                "priceText": "116",
                                "free": "false",
                                "cells": "true"
                            }
                        }
                    },
                    "multiSelect": "true",
                    "mustSelect": "false",
                    "sku2serviceMap": {
                        "0": [
                            {
                                "serviceId": "743850903261",
                                "serviceSkuPrices": [
                                    {
                                        "uniqueId": "5131200493022",
                                        "free": "false",
                                        "price": "11700",
                                        "priceText": "117",
                                        "lineThroughPrice": "11700",
                                        "lineThroughPriceText": "117",
                                        "skuId": "5377597494439",
                                        "desc": "(快速响应 换新保障)",
                                        "extraDisplayName": "快速响应 换新保障"
                                    },
                                    {
                                        "uniqueId": "5131200493023",
                                        "free": "false",
                                        "price": "23400",
                                        "priceText": "234",
                                        "lineThroughPrice": "23400",
                                        "lineThroughPriceText": "234",
                                        "skuId": "5377597494439",
                                        "desc": "(快速响应 换新保障)",
                                        "extraDisplayName": "快速响应 换新保障"
                                    },
                                    {
                                        "uniqueId": "5131200493024",
                                        "free": "false",
                                        "price": "29200",
                                        "priceText": "292",
                                        "lineThroughPrice": "29200",
                                        "lineThroughPriceText": "292",
                                        "skuId": "5377597494439",
                                        "desc": "(快速响应 换新保障)",
                                        "extraDisplayName": "快速响应 换新保障"
                                    }
                                ],
                                "standardPresentationV2": "true"
                            },
                            {
                                "serviceId": "733008383026",
                                "serviceSkuPrices": [
                                    {
                                        "uniqueId": "5069832464496",
                                        "free": "false",
                                        "price": "19880",
                                        "priceText": "198.8",
                                        "lineThroughPrice": "19880",
                                        "lineThroughPriceText": "198.8",
                                        "skuId": "5377597494439"
                                    },
                                    {
                                        "uniqueId": "5069832464498",
                                        "free": "false",
                                        "price": "18060",
                                        "priceText": "180.6",
                                        "lineThroughPrice": "18060",
                                        "lineThroughPriceText": "180.6",
                                        "skuId": "5377597494439"
                                    }
                                ],
                                "standardPresentationV2": "true"
                            },
                            {
                                "serviceId": "747728399078",
                                "serviceSkuPrices": [
                                    {
                                        "uniqueId": "5153246568063",
                                        "free": "false",
                                        "price": "8400",
                                        "priceText": "84",
                                        "lineThroughPrice": "8400",
                                        "lineThroughPriceText": "84",
                                        "skuId": "5377597494439"
                                    },
                                    {
                                        "uniqueId": "5153246568065",
                                        "free": "false",
                                        "price": "16100",
                                        "priceText": "161",
                                        "lineThroughPrice": "16100",
                                        "lineThroughPriceText": "161",
                                        "skuId": "5377597494439"
                                    },
                                    {
                                        "uniqueId": "5153246568067",
                                        "free": "false",
                                        "price": "11600",
                                        "priceText": "116",
                                        "lineThroughPrice": "11600",
                                        "lineThroughPriceText": "116",
                                        "skuId": "5377597494439"
                                    },
                                    {
                                        "uniqueId": "5153246568069",
                                        "free": "false",
                                        "price": "21000",
                                        "priceText": "210",
                                        "lineThroughPrice": "21000",
                                        "lineThroughPriceText": "210",
                                        "skuId": "5377597494439"
                                    }
                                ],
                                "standardPresentationV2": "true"
                            },
                            {
                                "serviceId": "731470865171",
                                "serviceSkuPrices": [
                                    {
                                        "uniqueId": "5236334822076",
                                        "free": "false",
                                        "price": "22900",
                                        "priceText": "229",
                                        "lineThroughPrice": "22900",
                                        "lineThroughPriceText": "229",
                                        "skuId": "5377597494439"
                                    },
                                    {
                                        "uniqueId": "5236334822077",
                                        "free": "false",
                                        "price": "21000",
                                        "priceText": "210",
                                        "lineThroughPrice": "21000",
                                        "lineThroughPriceText": "210",
                                        "skuId": "5377597494439"
                                    }
                                ],
                                "standardPresentationV2": "true"
                            }
                        ],
                        "5377597494439": [
                            {
                                "serviceId": "743850903261",
                                "serviceSkuPrices": [
                                    {
                                        "uniqueId": "5131200493022",
                                        "free": "false",
                                        "price": "11700",
                                        "priceText": "117",
                                        "lineThroughPrice": "11700",
                                        "lineThroughPriceText": "117",
                                        "skuId": "5377597494439",
                                        "desc": "(快速响应 换新保障)",
                                        "extraDisplayName": "快速响应 换新保障"
                                    },
                                    {
                                        "uniqueId": "5131200493023",
                                        "free": "false",
                                        "price": "23400",
                                        "priceText": "234",
                                        "lineThroughPrice": "23400",
                                        "lineThroughPriceText": "234",
                                        "skuId": "5377597494439",
                                        "desc": "(快速响应 换新保障)",
                                        "extraDisplayName": "快速响应 换新保障"
                                    },
                                    {
                                        "uniqueId": "5131200493024",
                                        "free": "false",
                                        "price": "29200",
                                        "priceText": "292",
                                        "lineThroughPrice": "29200",
                                        "lineThroughPriceText": "292",
                                        "skuId": "5377597494439",
                                        "desc": "(快速响应 换新保障)",
                                        "extraDisplayName": "快速响应 换新保障"
                                    }
                                ],
                                "standardPresentationV2": "true"
                            },
                            {
                                "serviceId": "733008383026",
                                "serviceSkuPrices": [
                                    {
                                        "uniqueId": "5069832464496",
                                        "free": "false",
                                        "price": "19880",
                                        "priceText": "198.8",
                                        "lineThroughPrice": "19880",
                                        "lineThroughPriceText": "198.8",
                                        "skuId": "5377597494439"
                                    },
                                    {
                                        "uniqueId": "5069832464498",
                                        "free": "false",
                                        "price": "18060",
                                        "priceText": "180.6",
                                        "lineThroughPrice": "18060",
                                        "lineThroughPriceText": "180.6",
                                        "skuId": "5377597494439"
                                    }
                                ],
                                "standardPresentationV2": "true"
                            },
                            {
                                "serviceId": "747728399078",
                                "serviceSkuPrices": [
                                    {
                                        "uniqueId": "5153246568063",
                                        "free": "false",
                                        "price": "8400",
                                        "priceText": "84",
                                        "lineThroughPrice": "8400",
                                        "lineThroughPriceText": "84",
                                        "skuId": "5377597494439"
                                    },
                                    {
                                        "uniqueId": "5153246568065",
                                        "free": "false",
                                        "price": "16100",
                                        "priceText": "161",
                                        "lineThroughPrice": "16100",
                                        "lineThroughPriceText": "161",
                                        "skuId": "5377597494439"
                                    },
                                    {
                                        "uniqueId": "5153246568067",
                                        "free": "false",
                                        "price": "11600",
                                        "priceText": "116",
                                        "lineThroughPrice": "11600",
                                        "lineThroughPriceText": "116",
                                        "skuId": "5377597494439"
                                    },
                                    {
                                        "uniqueId": "5153246568069",
                                        "free": "false",
                                        "price": "21000",
                                        "priceText": "210",
                                        "lineThroughPrice": "21000",
                                        "lineThroughPriceText": "210",
                                        "skuId": "5377597494439"
                                    }
                                ],
                                "standardPresentationV2": "true"
                            },
                            {
                                "serviceId": "731470865171",
                                "serviceSkuPrices": [
                                    {
                                        "uniqueId": "5236334822076",
                                        "free": "false",
                                        "price": "22900",
                                        "priceText": "229",
                                        "lineThroughPrice": "22900",
                                        "lineThroughPriceText": "229",
                                        "skuId": "5377597494439"
                                    },
                                    {
                                        "uniqueId": "5236334822077",
                                        "free": "false",
                                        "price": "21000",
                                        "priceText": "210",
                                        "lineThroughPrice": "21000",
                                        "lineThroughPriceText": "210",
                                        "skuId": "5377597494439"
                                    }
                                ],
                                "standardPresentationV2": "true"
                            }
                        ]
                    },
                    "allServices": [
                        {
                            "uniqueServices": [
                                {
                                    "autoSelect": "false",
                                    "uniqueId": "5131200493022",
                                    "name": "1年",
                                    "attributeStr": ""
                                },
                                {
                                    "autoSelect": "false",
                                    "uniqueId": "5131200493023",
                                    "name": "2年",
                                    "attributeStr": ""
                                },
                                {
                                    "autoSelect": "false",
                                    "uniqueId": "5131200493024",
                                    "name": "3年",
                                    "attributeStr": ""
                                }
                            ],
                            "serviceCode": "MIANFEIHUANXIN301A",
                            "serviceId": "743850903261",
                            "autoSelect": "false",
                            "mustSelect": "false",
                            "name": "天猫只换不修",
                            "isvService": "false",
                            "desc": "(性能故障,免费换新)",
                            "extraDisplayName": "性能故障,免费换新",
                            "standardPresentationV2": "true",
                            "action": "服务说明",
                            "actionLink": "https://pages.tmall.com/wow/fuwu/act/service-intro?serviceItemIdentity=743850903261&location=330782001",
                            "groupName": "保障服务"
                        },
                        {
                            "uniqueServices": [
                                {
                                    "autoSelect": "false",
                                    "uniqueId": "5069832464498",
                                    "name": "二年",
                                    "attributeStr": ""
                                },
                                {
                                    "autoSelect": "false",
                                    "uniqueId": "5069832464496",
                                    "name": "三年",
                                    "attributeStr": ""
                                }
                            ],
                            "serviceCode": "PINGTAIQUANMIANBAOXIU846A",
                            "serviceId": "733008383026",
                            "autoSelect": "false",
                            "mustSelect": "false",
                            "name": "天猫全面保修",
                            "isvService": "false",
                            "desc": "(意外+性能故障维修)",
                            "extraDisplayName": "意外+性能故障维修",
                            "standardPresentationV2": "true",
                            "action": "服务说明",
                            "actionLink": "https://market.m.taobao.com/app/aser/service-intro-webapp/index.html?serviceItemIdentity=733008383026&location=330782001",
                            "groupName": "保障服务"
                        },
                        {
                            "uniqueServices": [
                                {
                                    "autoSelect": "false",
                                    "uniqueId": "5153246568063",
                                    "name": "一年",
                                    "attributeStr": ""
                                },
                                {
                                    "autoSelect": "false",
                                    "uniqueId": "5153246568067",
                                    "name": "二年",
                                    "attributeStr": ""
                                },
                                {
                                    "autoSelect": "false",
                                    "uniqueId": "5153246568065",
                                    "name": "三年",
                                    "attributeStr": ""
                                },
                                {
                                    "autoSelect": "false",
                                    "uniqueId": "5153246568069",
                                    "name": "四年",
                                    "attributeStr": ""
                                }
                            ],
                            "serviceCode": "PINGTAIYANZHANGBAOXIU923A",
                            "serviceId": "747728399078",
                            "autoSelect": "false",
                            "mustSelect": "false",
                            "name": "天猫延长保修",
                            "isvService": "false",
                            "desc": "(性能故障延长维修)",
                            "extraDisplayName": "性能故障延长维修",
                            "standardPresentationV2": "true",
                            "action": "服务说明",
                            "actionLink": "https://market.m.taobao.com/app/aser/service-intro-webapp/index.html?serviceItemIdentity=747728399078&location=330782001",
                            "groupName": "保障服务"
                        },
                        {
                            "uniqueServices": [
                                {
                                    "autoSelect": "false",
                                    "uniqueId": "5236334822077",
                                    "name": "二年",
                                    "attributeStr": ""
                                },
                                {
                                    "autoSelect": "false",
                                    "uniqueId": "5236334822076",
                                    "name": "三年",
                                    "attributeStr": ""
                                }
                            ],
                            "serviceCode": "PINGTAIYIWAIBAOXIU675A",
                            "serviceId": "731470865171",
                            "autoSelect": "false",
                            "mustSelect": "false",
                            "name": "天猫意外保修",
                            "isvService": "false",
                            "desc": "(意外故障平台维修)",
                            "extraDisplayName": "意外故障平台维修",
                            "standardPresentationV2": "true",
                            "action": "服务说明",
                            "actionLink": "https://market.m.taobao.com/app/aser/service-intro-webapp/index.html?serviceItemIdentity=731470865171&location=330782001",
                            "groupName": "保障服务"
                        }
                    ],
                    "name": "特色服务"
                },
                "promotionFloatingData": {
                    "detailPromotionTimeDO": {
                        "promotionType": "NLORMAL"
                    },
                    "promotionText": "¥4599",
                    "skuMoney": {
                        "skuId": "5377597494439",
                        "cent": "459900"
                    },
                    "buyEnable": "true"
                },
                "skuLightOff": {
                    "float": [
                        {
                            "loadTimeOut": "5000",
                            "containerType": "dinamicx",
                            "name": "skuBottom",
                            "version": "1",
                            "url": "https://dinamicx.alibabausercontent.com/l_pub/detail_blacklight_float/1696941315014/detail_blacklight_float.zip"
                        }
                    ]
                },
                "itemParams": {
                    "groupProps": [
                        {
                            "基本信息": [
                                {
                                    "吸尘器品牌": "dyson/戴森"
                                },
                                {
                                    "型号": "V11 Fluffy."
                                },
                                {
                                    "功能": "吸尘"
                                },
                                {
                                    "颜色分类": "V11 Fluffy."
                                },
                                {
                                    "电压": "100V-240V"
                                },
                                {
                                    "线长": "无线"
                                },
                                {
                                    "生产企业": "DYSON LIMIT"
                                },
                                {
                                    "附加功能": "除螨"
                                },
                                {
                                    "吸尘器类型": "手持式"
                                },
                                {
                                    "功率": "545W"
                                },
                                {
                                    "最大噪音": "82dB"
                                },
                                {
                                    "保修期": "24个月"
                                },
                                {
                                    "续航时间": "地面运行时间60分钟"
                                },
                                {
                                    "最大吸入功率": "185AW"
                                },
                                {
                                    "3C证书编号": "2019010708254046"
                                }
                            ]
                        }
                    ],
                    "propsList": null
                }
            },
            "item": {
                "brandValueId": "43485175",
                "cartUrl": "https://h5.m.taobao.com/awp/base/cart.htm",
                "categoryId": "50008554",
                "commentCount": "0",
                "countMultiple": [
    
                ],
                "exParams": [
    
                ],
                "favcount": "65384",
                "h5ItemUrl": "https://new.m.taobao.com/detail.htm?id=613530042191&hybrid=true",
                "h5moduleDescUrl": "//mdetail.tmall.com/templates/pages/itemDesc?id=613530042191",
                "images": [
                    "//img.alicdn.com/imgextra/i3/2089100916/O1CN01vyrsdY1IdZjqEOZuq_!!0-item_pic.jpg"
                ],
                "itemId": "613530042191",
                "moduleDescParams": {
                    "f": "desc/icoss3576089984880fae093255dc80",
                    "id": "613530042191"
                },
                "moduleDescUrl": "//hws.m.taobao.com/d/modulet/v5/WItemMouldDesc.do?id=613530042191&f=icoss3576089984880fae093255dc80",
                "openDecoration": "false",
                "pcADescUrl": "//market.m.taobao.com/app/detail-project/desc/index.html?id=613530042191&descVersion=7.0&type=1&f=icoss!0613530042191!12010900541&sellerType=B",
                "rootCategoryId": "50012100",
                "skuText": "请选择颜色分类 ",
                "subtitle": "",
                "taobaoDescUrl": "https://market.m.taobao.com/app/detail-project/desc/index.html?id=613530042191&descVersion=7.0&type=0&f=desc/icoss3576089984880fae093255dc80&sellerType=B",
                "taobaoPcDescUrl": "https://market.m.taobao.com/app/detail-project/desc/index.html?id=613530042191&descVersion=6.0&type=1&f=icoss!0613530042191!12010900541&sellerType=B",
                "title": "Dyson戴森V11 Fluffy无线吸尘器大户型大吸力除螨家用",
                "tmallDescUrl": "//mdetail.tmall.com/templates/pages/desc?id=613530042191"
            },
            "props": {
                "groupProps": [
                    {
                        "基本信息": [
                            {
                                "吸尘器品牌": "dyson/戴森"
                            },
                            {
                                "型号": "V11 Fluffy."
                            },
                            {
                                "功能": "吸尘"
                            },
                            {
                                "颜色分类": "V11 Fluffy."
                            },
                            {
                                "电压": "100V-240V"
                            },
                            {
                                "线长": "无线"
                            },
                            {
                                "生产企业": "DYSON LIMIT"
                            },
                            {
                                "附加功能": "除螨"
                            },
                            {
                                "吸尘器类型": "手持式"
                            },
                            {
                                "功率": "545W"
                            },
                            {
                                "最大噪音": "82dB"
                            },
                            {
                                "保修期": "24个月"
                            },
                            {
                                "续航时间": "地面运行时间60分钟"
                            },
                            {
                                "最大吸入功率": "185AW"
                            },
                            {
                                "3C证书编号": "2019010708254046"
                            }
                        ]
                    }
                ]
            },
            "props2": [
    
            ],
            "propsCut": "吸尘器品牌 型号 功能 颜色分类 电压 线长 生产企业 附加功能 吸尘器类型 功率 最大噪音 保修期 续航时间 最大吸入功率 3C证书编号 ",
            "rate": {
                "invite": {
                    "inviteText": "",
                    "showInvite": "false"
                },
                "keywords": [
                    {
                        "attribute": "30071043-11",
                        "count": "72",
                        "type": "1",
                        "word": "续航能力强"
                    },
                    {
                        "attribute": "30141002-11",
                        "count": "63",
                        "type": "1",
                        "word": "品牌有影响力"
                    },
                    {
                        "attribute": "30071017-11",
                        "count": "149",
                        "type": "1",
                        "word": "声音不是太大"
                    },
                    {
                        "attribute": "30011008-11",
                        "count": "127",
                        "type": "1",
                        "word": "外观颜值在线"
                    },
                    {
                        "attribute": "30021000-11",
                        "count": "133",
                        "type": "1",
                        "word": "使用方法具体"
                    },
                    {
                        "attribute": "30161000-13",
                        "count": "2",
                        "type": "-1",
                        "word": "不会再来买"
                    }
                ],
                "rateList": [
                    {
                        "blackCardUserUrl": "//img.alicdn.com/tfs/TB1wrG1elv0gK0jSZKbXXbK2FXa-225-96.png",
                        "content": "包装很严实,很精致 11的吸力真的很大!也没有想象中重,女生也可以轻松驾驭~配件多,要清洁的地方换头就可以轻松解决",
                        "createTimeInterval": "9天前",
                        "dateTime": "2024-03-24",
                        "feedId": "1234245513619",
                        "headPic": "//sns.m.taobao.com/avatar/sns/user/flag/sns_logo?type=taobao&kn=wwc_tb_11&bizCode=taobao_avatar&userFlag=RAzN83923zmuym9oHAjQwWF1inPuxRBZTtABfowfjYZbdnnhyeakfi5dje5wkyhH2mFEEB8MCqMihjymMwrkWxCmonAtzVNtV7tKb2deYMcKXQggLb4YgZyx7ZLs",
                        "isVip": "true",
                        "memberLevel": "7",
                        "skuInfo": "颜色分类:V11 Fluffy.",
                        "tmallMemberLevel": "0",
                        "userName": "谁是我他是我"
                    },
                    {
                        "blackCardUserUrl": "//img.alicdn.com/tfs/TB1wrG1elv0gK0jSZKbXXbK2FXa-225-96.png",
                        "content": "这款吸尘器无论是外观颜色还是功能效果都很好,液晶显示很适用,即能显示剩余可使用时长,又能看到剩余电量超极清淅特别棒。比V10好很多,之前用的V10高档只能使用6分钟,这款V11可使用14分钟非常喜欢!物流给力,服务到位。",
                        "createTimeInterval": "28天前",
                        "dateTime": "2024-03-05",
                        "feedId": "1232713865046",
                        "headPic": "//sns.m.taobao.com/avatar/sns/user/flag/sns_logo?type=taobao&kn=wwc_tb_11&bizCode=taobao_avatar&userFlag=RAzN84GK7wS8eNZ5uWPfdQEPCfg4DVBDqSio1HDuZ3Syhr472BW5xghiK9nXDXG5QAm3RtPh83YHkVV4Eu8YPzVryVrnGfhkRMyS5r2AAUPknwa97itkuha4TAZ7G1B7rwwLmb5T7vrBrUXNitpunkd99p2quXcEUn9Uhf7",
                        "isVip": "true",
                        "memberLevel": "4",
                        "skuInfo": "颜色分类:V11 Fluffy.",
                        "tmallMemberLevel": "0",
                        "userName": "t**f"
                    }
                ],
                "totalCount": "2000+",
                "utFeedId": "1234245513619_1232713865046"
            },
            "seller": {
                "allItemCount": "91",
                "atmophereMask": "true",
                "atmosphereColor": "#ffffff",
                "atmosphereImg": "https://img.alicdn.com/imgextra/i4/2089100916/O1CN01pUGNT11IdZIQvKFNG_!!2089100916.jpg",
                "atmosphereMaskColor": "#59000000",
                "backgroundPic": "https://img.alicdn.com/imgextra/i3/O1CN01xTAR63288IdQsnpY9_!!6000000007887-0-tps-750-750.jpg",
                "brandIcon": "//gw.alicdn.com/tfs/TB1lkPnjeH2gK0jSZFEXXcqMpXa-368-52.png?getAvatar=avatar",
                "brandIconRatio": "7.3",
                "creditLevel": "16",
                "creditLevelIcon": "//gw.alicdn.com/tfs/TB1QoJUIwmTBuNjy1XbXXaMrVXa-84-36.png?getAvatar=avatar",
                "entranceList": [
                    {
                        "action": [
                            {
                                "key": "open_url",
                                "params": {
                                    "url": "//shop.m.taobao.com/shop/shop_index.htm?user_id=2089100916&item_id=613530042191&currentClickTime=-1"
                                }
                            },
                            {
                                "key": "user_track",
                                "params": {
                                    "trackName": "Button-NewShopcard-ShopPage",
                                    "trackParams": {
                                        "spm": "a.2141.7631564.shoppage"
                                    }
                                }
                            }
                        ],
                        "backgroundColor": "#59000000",
                        "borderColor": "#59ffffff",
                        "text": "进店逛逛",
                        "textColor": "#ffffff"
                    },
                    {
                        "action": [
                            {
                                "key": "open_url",
                                "params": {
                                    "url": "//shop.m.taobao.com/shop/shop_index.htm?user_id=2089100916&item_id=613530042191&shop_navi=allitems"
                                }
                            },
                            {
                                "key": "user_track",
                                "params": {
                                    "trackName": "Button-NewShopcard-AllItem",
                                    "trackParams": {
                                        "spm": "a.2141.7631564.allitem"
                                    }
                                }
                            }
                        ],
                        "backgroundColor": "#59000000",
                        "borderColor": "#59ffffff",
                        "text": "全部宝贝",
                        "textColor": "#ffffff"
                    },
                    {
                        "action": [
                            {
                                "key": "open_url",
                                "params": {
                                    "url": "https://shop111481369.taobao.com?weexShopTab=memberbar"
                                }
                            },
                            {
                                "key": "user_track",
                                "params": {
                                    "trackName": "Button-NewShopcard-MemberCenter",
                                    "trackParams": {
                                        "spm": "a.2141.7631564.membercenter"
                                    }
                                }
                            }
                        ],
                        "backgroundColor": "#59000000",
                        "borderColor": "#59ffffff",
                        "text": "会员中心",
                        "textColor": "#ffffff"
                    }
                ],
                "evaluates": [
                    {
                        "level": "1",
                        "levelBackgroundColor": "#EEEEEE",
                        "levelText": "高",
                        "levelTextColor": "#999999",
                        "score": "4.8 ",
                        "title": "宝贝描述",
                        "tmallLevelBackgroundColor": "#EEEEEE",
                        "tmallLevelTextColor": "#999999",
                        "type": "desc"
                    },
                    {
                        "level": "1",
                        "levelBackgroundColor": "#EEEEEE",
                        "levelText": "高",
                        "levelTextColor": "#999999",
                        "score": "4.8 ",
                        "title": "卖家服务",
                        "tmallLevelBackgroundColor": "#EEEEEE",
                        "tmallLevelTextColor": "#999999",
                        "type": "serv"
                    },
                    {
                        "level": "1",
                        "levelBackgroundColor": "#EEEEEE",
                        "levelText": "高",
                        "levelTextColor": "#999999",
                        "score": "4.9 ",
                        "title": "物流服务",
                        "tmallLevelBackgroundColor": "#EEEEEE",
                        "tmallLevelTextColor": "#999999",
                        "type": "post"
                    }
                ],
                "evaluates2": [
                    {
                        "level": "1",
                        "levelText": "高",
                        "levelTextColor": "#f0f0f0",
                        "score": "4.8 ",
                        "scoreTextColor": "#ffffff",
                        "title": "宝贝描述",
                        "titleColor": "#ffffff",
                        "type": "desc"
                    },
                    {
                        "level": "1",
                        "levelText": "高",
                        "levelTextColor": "#f0f0f0",
                        "score": "4.8 ",
                        "scoreTextColor": "#ffffff",
                        "title": "卖家服务",
                        "titleColor": "#ffffff",
                        "type": "serv"
                    },
                    {
                        "level": "1",
                        "levelText": "高",
                        "levelTextColor": "#f0f0f0",
                        "score": "4.9 ",
                        "scoreTextColor": "#ffffff",
                        "title": "物流服务",
                        "titleColor": "#ffffff",
                        "type": "post"
                    }
                ],
                "fans": "596.8万",
                "fbt2User": "dyson戴森官方旗舰店",
                "goodRatePercentage": "100.00%",
                "newItemCount": "4",
                "pcShopUrl": "//shop111481369.taobao.com",
                "rankLevelPic": "//gw.alicdn.com/tfs/TB10pRjdkH0gK0jSZPiXXavapXa-339-58.png",
                "sellerNick": "dyson戴森官方旗舰店",
                "sellerType": "B",
                "shopCard": "掌柜近期上新4件宝贝,速览",
                "shopIcon": "//img.alicdn.com/imgextra//c6/1b/TB1b9SmFVXXXXXxXFXXwu0bFXXX.png",
                "shopId": "111481369",
                "shopName": "dyson戴森官方旗舰店",
                "shopTextColor": "#ffffff",
                "shopType": "B",
                "shopUrl": "tmall://page.tm/shop?item_id=613530042191&shopId=111481369",
                "shopVersion": "0",
                "showShopLinkIcon": "false",
                "simpleShopDOStatus": "1",
                "startsIcon": "https://img.alicdn.com/imgextra/i4/O1CN018GrFIW1Zx7vwjt3Jg_!!6000000003260-2-tps-91-14.png",
                "taoShopUrl": "//shop.m.taobao.com/shop/shop_index.htm?user_id=2089100916&item_id=613530042191",
                "useFallbackImage": "true",
                "userId": "2089100916"
            },
            "skuBase": {
                "props": [
                    {
                        "name": "颜色分类",
                        "pid": "1627207",
                        "values": [
                            {
                                "image": "//img.alicdn.com/imgextra/i1/2089100916/O1CN01z516vz1IdZhmlXQ7H_!!2089100916.jpg",
                                "name": "V11 Fluffy.",
                                "vid": "3105514489"
                            }
                        ]
                    }
                ]
            },
            "app_ver": "4.0.3-7.0",
            "_ddf": "clo",
            "app_ver_check": "ok",
            "format_check": "ok"
        },
        "error": "",
        "secache": "483859a6dac14c2caa7bf8ead8d878b6",
        "secache_time": 1712045252,
        "secache_date": "2024-04-02 16:07:32",
        "reason": "",
        "error_code": "0000",
        "cache": 0,
        "api_info": "today: max:15000 all[=++];expires:2031-01-01",
        "execution_time": "3.537",
        "server_time": "Beijing/2024-04-02 16:07:32",
        "client_ip": "127.0.0.1",
        "call_args": {
            "num_iid": "613530042191"
        },
        "api_type": "taobao",
        "server_memory": "4.79MB",
        "last_id": false
    }
    异常示例
    {
    		"error": "item-not-found",
    		"reason": "商品没找到",
    		"error_code": "2000",
    		"success": 0,
    		"cache": 0,
    		"api_info": "today:0 max:10000",
    		"execution_time": 0.081,
    		"server_time": "Beijing/2020-06-10 23:44:00",
    		"call_args": [],
    		"api_type": "taobao",
    		"request_id": "15ee0ffc041242"}
    相关资料
    错误码解释
    状态代码(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:31424016063142401606(微信同号)