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

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

taobao.item_get_app

  • 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
  • taobao.item_get_app-4.0.4-7.0.html
  • taobao.item_get_app-4.0.5-7.0.html
  • taobao.item_get_app-4.0.6-7.0.html
  • taobao.item_get_app-4.0.7-7.0.html
  • taobao.item_get_app-4.0.8-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: Date:

    名称 类型 必须 示例值 描述
    items
    item[] 0 获得京东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": {
            "product": {
                "skuId": "100033031708",
                "skuName": "兰蔻菁纯套装水+眼霜+菁纯面霜30ml紧致滋润护肤套装生日礼物送女友",
                "imageurl": "jfs/t1/302929/32/15647/153106/68596cc3F8a4a0fa6/073d0049751ac404.jpg",
                "allnum": "0",
                "book": "false",
                "spec": "",
                "specName": "",
                "specSequence": "0",
                "salesAttr": "",
                "color": "菁纯水+眼霜+轻盈版面霜30ml",
                "size": "",
                "colorSequence": "2",
                "sizeSequence": "0",
                "erpPid": "100126474594",
                "category": "1316,1381,1396",
                "cat1": "1316",
                "cat2": "1381",
                "cat3": "1396",
                "skuStatus": "1",
                "venderId": "1000306683",
                "shopId": "1000306683",
                "width": "184",
                "height": "104",
                "length": "244",
                "weight": "1.100",
                "brandId": "10833",
                "valuePayFirst": "0",
                "extend": {
                    "packType": "4",
                    "is7ToReturn": "1",
                    "isOverseaPurchase": "0",
                    "isJIT": "0",
                    "isFlashPurchase": "0",
                    "storeProperty": "0",
                    "isJx": "0",
                    "customize": "0",
                    "soldOversea": "5",
                    "sendService": "0",
                    "thwa": "2",
                    "tsfw": "JG",
                    "mspd": "0",
                    "fxg": "0",
                    "dpg": "1",
                    "schf": "0",
                    "fhdw": "0",
                    "tssp": 0,
                    "fdms": 0,
                    "cjxp": "0",
                    "iscommerce": "0",
                    "seriesId": "56561",
                    "platform": "1",
                    "isPrescriptCat": "0",
                    "isOTCCat": "0",
                    "isNewGoods": "1",
                    "tax": "inputVAT:13,consumptionVAT:0,outputVAT:13",
                    "features": {
                        "isYjySkuPool": "1",
                        "isrc": "1",
                        "shortTitle": "【礼盒】兰蔻菁纯全明星",
                        "mgpjssj": "1746719999000",
                        "mgpkssj": "1746633600000",
                        "cxkfl": "1",
                        "isYjyChannelPool": "1",
                        "mgpbs": "2",
                        "gjyslx": "8192",
                        "IsJX": "0",
                        "gypsshyzt": "106_1,105_1,108_1,107_1,109_1,110_1,102_1,112_1,104_1,103_1",
                        "subZtType": "SPGX-XXNZT",
                        "Mzgdwls": "1"
                    },
                    "productFeatures": [],
                    "wjtyd": "1",
                    "sfylqx": "0",
                    "venderBizid": "",
                    "giftsGoods": "0",
                    "canUseDQ": true,
                    "canUseJQ": true,
                    "isYouImports": "1",
                    "isdangergoods": "0",
                    "isJDMarket": "0",
                    "isLqkt": "0",
                    "jzfp": false
                },
                "productArea": "法国",
                "saleDate": "2024-12-26 22:54:45",
                "brandName": "兰蔻",
                "site": "",
                "phone": "",
                "wserve": "无质保",
                "isDelete": "1",
                "skuMark": "0",
                "taxInfo": "inputVAT:13,consumptionVAT:0,outputVAT:13",
                "shangJia": "olyzh",
                "venderColType": "0",
                "timelinessId": "",
                "hasOverallViewAnchor": false,
                "showQJImg": false,
                "upc": "100033031708",
                "sellPoint": "",
                "cBrand": "兰蔻",
                "model": "菁纯水150ml+菁纯眼霜20ml+菁纯面霜30ml",
                "platform": "1",
                "productId": "100033031708",
                "productType": 10,
                "maxCartCat": "999",
                "pop": false,
                "daojia": false,
                "jdexpress": false
            },
            "price": {
                "id": "100033031708",
                "m": "3960.00",
                "p": "3??0",
                "op": "3??0",
                "pcp": "",
                "sp": "",
                "tpp": "",
                "tkp": "",
                "sfp": "",
                "nup": "",
                "bp": "",
                "vdp": "",
                "fmp": "",
                "rp": "",
                "sdnp": "",
                "qym": "",
                "qynp": "",
                "secKillBanner": false,
                "secKillAdvance": false
            },
            "priceFloor": {
                "demoteEnable": false,
                "price": "3??0",
                "type": "251",
                "ext": {
                    "jdPrice": "3??0"
                }
            },
            "titleShopTagInfo": [],
            "stock": {
                "skuId": "100033031708",
                "realSkuId": "100033031708",
                "ArrivalDate": "",
                "Drd": "",
                "sidDely": 332,
                "promiseResult": "20:00前付款,预计<b>明天(06月28日)</b>送达",
                "isJDexpress": false,
                "StockState": 33,
                "rn": -1,
                "code": 1,
                "weightValue": "1.1kg",
                "fxgCode": "0",
                "afsCode": 0,
                "ir": [
                    {
                        "iconSrc": "京准达",
                        "iconTip": "选择京准达服务,可指定精确时间点收货;若京东责任超时,即时赔付",
                        "helpLink": "//help.jd.com/user/issue/103-983.html",
                        "iconCode": "sendpay_zhun",
                        "resultCode": 1,
                        "showName": "京准达",
                        "picUrl": "http://m.360buyimg.com/mobilecms/jfs/t3172/266/1698067915/1634/64a0c40e/57d25fcfNd9c62bb7.png",
                        "iconType": 0,
                        "iconServiceType": 1
                    },
                    {
                        "iconSrc": "211限时达",
                        "iconTip": "上午下单,下午送达",
                        "helpLink": "https://help.jd.com/user/issue/91-953.html",
                        "iconCode": "sendpay_211",
                        "resultCode": 1,
                        "showName": "211限时达",
                        "picUrl": "//static.360buyimg.com/item/assets/picon/zhongbiao.png",
                        "iconType": 0,
                        "iconServiceType": 1
                    },
                    {
                        "iconSrc": "明日达",
                        "iconTip": "指定时间前下单,最快明日达",
                        "helpLink": "//help.jd.com/user/issue/103-983.html",
                        "iconCode": "sendpay_nextday",
                        "resultCode": 1,
                        "showName": "明日达",
                        "picUrl": "//static.360buyimg.com/item/assets/picon/zhongbiao.png",
                        "iconType": 0,
                        "iconServiceType": 1
                    },
                    {
                        "iconSrc": "京尊达",
                        "iconTip": "轻奢尊贵礼遇的高端派送服务",
                        "helpLink": "https://help.jd.com/user/issue/936-3526.html",
                        "iconCode": "service_jingzunda",
                        "resultCode": 1,
                        "showName": "京尊达",
                        "picUrl": "http://img13.360buyimg.com/cms/jfs/t6205/122/368144256/449/d25406e6/593e505dN5424f50e.png",
                        "iconType": 0,
                        "iconServiceType": 6
                    },
                    {
                        "iconSrc": "预约送货",
                        "iconTip": "京东物流为该商品提供预约送货服务",
                        "helpLink": "//help.jd.com/user/issue/103-983.html",
                        "iconCode": "service_yysh",
                        "resultCode": 1,
                        "showName": "预约送货",
                        "picUrl": "https://m.360buyimg.com/babel/jfs/t1/116316/15/7402/1031/5ec22ca4E713f857c/dd49784b20933cf5.png",
                        "iconType": 0,
                        "iconServiceType": 6
                    },
                    {
                        "iconSrc": "部分收货",
                        "iconTip": "如果收件人收货时发现部分货物存在缺少配件、物流损等情形,京东物流提供订单半收服务",
                        "helpLink": "https://help.jd.com/user/issue/103-983.html",
                        "iconCode": "service_bfsh",
                        "resultCode": 1,
                        "showName": "部分收货",
                        "picUrl": "https://m.360buyimg.com/babel/jfs/t1/108073/34/18517/1071/5ec22ce0E11a3b1c5/f8ffea5f4cafa0f9.png",
                        "iconType": 0,
                        "iconServiceType": 6
                    },
                    {
                        "iconSrc": "送货上门",
                        "iconTip": "京东快递为您提供送货上门服务",
                        "helpLink": "https://help.jd.com/user/issue/254-4130.html",
                        "iconCode": "service_sssm",
                        "resultCode": 1,
                        "showName": "送货上门",
                        "picUrl": "https://m.360buyimg.com/babel/jfs/t1/115738/37/12143/1066/5f0c7d11E4faee520/de3879572e2b2014.png",
                        "iconType": 0,
                        "iconServiceType": 6
                    },
                    {
                        "iconSrc": "59元免基础运费",
                        "iconTip": "所选地址自营订单满59元免基础运费(20kg内),超出重量加收1元/kg续重运费。",
                        "helpLink": "//help.jd.com/user/issue/103-983.html",
                        "iconCode": "free_delivery_zhong",
                        "resultCode": 1,
                        "showName": "59元免基础运费",
                        "picUrl": "//static.360buyimg.com/item/assets/picon/mianyunfei.png",
                        "iconType": 0,
                        "iconServiceType": 4
                    },
                    {
                        "iconSrc": "京东物流",
                        "iconTip": "京东物流为您提供仓配一体供应链服务",
                        "helpLink": "https://help.jd.com/user/issue/list-81.html",
                        "iconCode": "service_jdwl",
                        "resultCode": 1,
                        "showName": "京东物流",
                        "picUrl": "https://m.360buyimg.com/babel/jfs/t1/130756/9/11972/4289/5f8674d3Eabfebbef/bb964241bd789a72.png",
                        "iconType": 0,
                        "iconServiceType": 4
                    },
                    {
                        "iconSrc": "7天价保",
                        "iconTip": "在下单或签收7天内,商品出现降价可享受价保服务,部分特殊场景不支持价保,可点击”>\"了解详细规则",
                        "helpLink": "https://help.jd.com/user/issue/291-548.html",
                        "iconCode": "service_guominwuyou",
                        "resultCode": 1,
                        "showName": "7天价保",
                        "picUrl": "https://m.360buyimg.com/babel/jfs/t1/85923/26/10113/3475/5e144da1Ef978a914/d3d44f85b4221cf6.png",
                        "iconType": 0,
                        "iconServiceType": 3
                    },
                    {
                        "iconSrc": "破损包退换",
                        "iconTip": "签收后72小时内(鱼缸类商品需24小时内)发现非用户原因商品破损问题,提供退换货或补发商品等服务",
                        "helpLink": "https://help.jd.com/user/issue/942-3837.html",
                        "iconCode": "service_psbth",
                        "resultCode": 1,
                        "showName": "破损包退换",
                        "picUrl": "https://img12.360buyimg.com/cms/jfs/t1/3879/4/2691/1414/5b972bfeE68df6212/fba3cd7b26b3ac1c.png",
                        "iconType": 0,
                        "iconServiceType": 3
                    },
                    {
                        "iconSrc": "自提",
                        "iconTip": "我们提供多种自提服务,包括京东自提点、自助提货柜、京东校园派、京东星配站、京东便民站等服务",
                        "helpLink": "//help.jd.com/user/issue/103-983.html",
                        "iconCode": "special_ziti",
                        "resultCode": 1,
                        "showName": "自提",
                        "picUrl": "//static.360buyimg.com/item/assets/picon/shoutixiang.png",
                        "iconType": 0,
                        "iconServiceType": 5
                    }
                ],
                "promiseYX": {
                    "iconSrc": "7天无理由退货(一次性包装破损不支持)",
                    "iconTip": "支持7天无理由退货(一次性包装破损不支持)",
                    "helpLink": "http://help.jd.com/user/issue/126-3780.html ",
                    "iconCode": "service_qitiantuihuo",
                    "resultCode": 1,
                    "showName": "7天无理由退货(一次性包装破损不支持)",
                    "picUrl": "",
                    "iconType": 0,
                    "iconServiceType": 3
                },
                "self_D": {
                    "venderId": 1000306683,
                    "colType": 0,
                    "shopId": 1000306683,
                    "shopName": "兰蔻京东自营旗舰店",
                    "vender": "兰蔻京东自营旗舰店",
                    "hotLine": "",
                    "shopWebsite": "http://mall.jd.com/index-1000306683.html",
                    "po": false
                },
                "serviceInfo": "由 <span class=hl_red>京东</span> 发货, 并提供售后服务. ",
                "sid": 332,
                "preStore": -1,
                "unifiedServiceTag": {
                    "enable": true,
                    "freightIconCodes": [
                        "free_delivery",
                        "free_delivery_zhong",
                        "free_delivery_fresh",
                        "free_delivery_fresh_zhong",
                        "Free_nbaoyou",
                        "Free_nsxbaoyou",
                        "free_baoyou",
                        "free_sxbaoyou"
                    ],
                    "iconServiceTypes": [
                        "1",
                        "5",
                        "6"
                    ],
                    "tsfw": [
                        {
                            "code": "s26",
                            "desc": "在下单或签收7天内,商品出现降价可享受价保服务(商品在消费者下单后因参与百亿补贴、政府补贴等活动导致降价不支持价保),可点击“>”了解详细规则",
                            "helpUrl": "https://ihelp.jd.com/l/help/scene/getSceneDetail?id=337318",
                            "logoUrl": "//m.360buyimg.com/babel/jfs/t1/166785/27/4308/10074/60113548Ea9bb7dbb/be0bac01dccf5f52.png",
                            "name": "7天价保",
                            "shortDesc": "7天内买贵退差价",
                            "iHelpLink": "https://ihelp.jd.com/l/help/scene/getSceneDetail?id=325798",
                            "ihelpLink": "https://ihelp.jd.com/l/help/scene/getSceneDetail?id=325798",
                            "mimgUrl": "//m.360buyimg.com/babel/jfs/t1/222474/40/8926/4033/61de8162E9b3a5a0c/b11a4cc5342015b0.png",
                            "mimgUrl2": "//m.360buyimg.com/lme/jfs/t1/222228/21/20461/3101/63048db5Ef37ece2e/83f0be5658b2f25b.png"
                        },
                        {
                            "code": "s24",
                            "desc": "签收后72小时内(鱼缸类商品需24小时内)发现非用户原因商品破损问题,提供退换货或补发商品等服务",
                            "logoUrl": "//m.360buyimg.com/babel/jfs/t1/165294/34/4317/1381/60113548E6eeea0be/3da037b6d436cda6.png",
                            "name": "破损包退换",
                            "shortDesc": "商品破损包退包换",
                            "mimgUrl": "//m.360buyimg.com/babel/jfs/t1/219430/22/10828/5229/61de8162E4e3e011e/15400959dff92730.png",
                            "mimgUrl2": "//m.360buyimg.com/lme/jfs/t1/171083/32/29633/1927/63036085Ea2a870b4/6ca0d9411282993c.png"
                        }
                    ]
                },
                "isSupport": true
            },
            "category": {
                "categoryId": 1316,
                "categoryName": "美妆护肤",
                "categoryNameAlias": "",
                "fatherCategoryId": 0,
                "categoryClass": 0,
                "status": 1,
                "orderSort": 6,
                "yn": 1,
                "img": "",
                "created": 1366026533000,
                "modified": 1526029963000
            },
            "pingou": "",
            "ptqq": "",
            "kanjia": "",
            "bigouinfo": "",
            "promov2": [
                {
                    "id": "100033031708",
                    "hit": "0",
                    "vl": 0,
                    "pl": 0,
                    "jl": 0,
                    "isPlusDiscount": 0,
                    "pis": [
                        {
                            "10": "[{\"buId\":301,\"extInfo\":{\"sp\":\"19.00\"},\"gs\":2,\"gt\":2,\"mp\":\"jfs/t1/259296/23/14790/23015/67920f5bF17cfa559/c83da226de1995b5.jpg\",\"nm\":\"兰蔻日常白金中号礼袋(耗材)\",\"num\":1,\"pno\":\"1\",\"sid\":\"100023174478\",\"ss\":1},{\"buId\":301,\"extInfo\":{\"sp\":\"19.00\"},\"gs\":2,\"gt\":2,\"mp\":\"jfs/t1/236844/7/6472/22316/65713e99F492778ea/c5d80b77fe57f2fc.jpg\",\"nm\":\"兰蔻定制收纳袋【赠品,请勿拍下】\",\"num\":1,\"pno\":\"1\",\"sid\":\"100030760676\",\"ss\":1},{\"buId\":301,\"extInfo\":{\"sp\":\"100.00\"},\"gs\":2,\"gt\":2,\"mp\":\"jfs/t1/168579/37/37754/43708/663c4aa7F05299dfe/55cc8038b59d2737.jpg\",\"nm\":\"兰蔻全新菁纯眼霜5ml\",\"num\":4,\"pno\":\"1\",\"sid\":\"100104982288\",\"ss\":1},{\"buId\":301,\"extInfo\":{\"sp\":\"243.00\"},\"gs\":2,\"gt\":2,\"mp\":\"jfs/t1/263741/16/3592/36381/676d22c7F991b806a/69b39ebd38940317.jpg\",\"nm\":\"兰蔻兰蔻全新菁纯臻颜乳霜 轻盈型 15ml\",\"num\":2,\"pno\":\"1\",\"sid\":\"100157948396\",\"ss\":1}]!@@!(赠完即止)",
                            "customtag": "{\"1\":\"赠品\"}",
                            "pid": "306089299018_4",
                            "extInfo": {
                                "virtualType": "TAG_common_gift",
                                "giftOld2NewInfo": ""
                            },
                            "searchUrl": "https://wqsou.jd.com/coprsearch/prsearch?promotion_aggregation=yes&activity_id=306089299018&pro_d=%E8%B5%A0%E5%93%81&pro_s=%5B%7B%22buId%22%3A301%2C%22extInfo%22%3A%7B%22sp%22%3A%2219.00%22%7D%2C%22gs%22%3A2%2C%22gt%22%3A2%2C%22mp%22%3A%22jfs%2Ft1%2F259296%2F23%2F14790%2F23015%2F67920f5bF17cfa559%2Fc83da226de1995b5.jpg%22%2C%22nm%22%3A%22%E5%85%B0%E8%94%BB%E6%97%A5%E5%B8%B8%E7%99%BD%E9%87%91%E4%B8%AD%E5%8F%B7%E7%A4%BC%E8%A2%8B%EF%BC%88%E8%80%97%E6%9D%90%EF%BC%89%22%2C%22num%22%3A1%2C%22pno%22%3A%221%22%2C%22sid%22%3A%22100023174478%22%2C%22ss%22%3A1%7D%2C%7B%22buId%22%3A301%2C%22extInfo%22%3A%7B%22sp%22%3A%2219.00%22%7D%2C%22gs%22%3A2%2C%22gt%22%3A2%2C%22mp%22%3A%22jfs%2Ft1%2F236844%2F7%2F6472%2F22316%2F65713e99F492778ea%2Fc5d80b77fe57f2fc.jpg%22%2C%22nm%22%3A%22%E5%85%B0%E8%94%BB%E5%AE%9A%E5%88%B6%E6%94%B6%E7%BA%B3%E8%A2%8B%E3%80%90%E8%B5%A0%E5%93%81%EF%BC%8C%E8%AF%B7%E5%8B%BF%E6%8B%8D%E4%B8%8B%E3%80%91%22%2C%22num%22%3A1%2C%22pno%22%3A%221%22%2C%22sid%22%3A%22100030760676%22%2C%22ss%22%3A1%7D%2C%7B%22buId%22%3A301%2C%22extInfo%22%3A%7B%22sp%22%3A%22100.00%22%7D%2C%22gs%22%3A2%2C%22gt%22%3A2%2C%22mp%22%3A%22jfs%2Ft1%2F168579%2F37%2F37754%2F43708%2F663c4aa7F05299dfe%2F55cc8038b59d2737.jpg%22%2C%22nm%22%3A%22%E5%85%B0%E8%94%BB%E5%85%A8%E6%96%B0%E8%8F%81%E7%BA%AF%E7%9C%BC%E9%9C%9C5ml%22%2C%22num%22%3A4%2C%22pno%22%3A%221%22%2C%22sid%22%3A%22100104982288%22%2C%22ss%22%3A1%7D%2C%7B%22buId%22%3A301%2C%22extInfo%22%3A%7B%22sp%22%3A%22243.00%22%7D%2C%22gs%22%3A2%2C%22gt%22%3A2%2C%22mp%22%3A%22jfs%2Ft1%2F263741%2F16%2F3592%2F36381%2F676d22c7F991b806a%2F69b39ebd38940317.jpg%22%2C%22nm%22%3A%22%E5%85%B0%E8%94%BB%E5%85%B0%E8%94%BB%E5%85%A8%E6%96%B0%E8%8F%81%E7%BA%AF%E8%87%BB%E9%A2%9C%E4%B9%B3%E9%9C%9C+%E8%BD%BB%E7%9B%88%E5%9E%8B+15ml%22%2C%22num%22%3A2%2C%22pno%22%3A%221%22%2C%22sid%22%3A%22100157948396%22%2C%22ss%22%3A1%7D%5D%21%40%40%21%EF%BC%88%E8%B5%A0%E5%AE%8C%E5%8D%B3%E6%AD%A2%EF%BC%89&filt_type=productext2,b40v0",
                            "st": "1750694400",
                            "isBeauty": false,
                            "d": "1752508799",
                            "promoType": 4,
                            "subPromoType": 2001
                        },
                        {
                            "18": "满300元、1500元、3000元、5000元可得相应赠品,赠完即止,请在购物车点击领取",
                            "minNeedMoney": 300,
                            "pid": "299631861510_10",
                            "extInfo": {
                                "virtualType": "TAG_sum_Overlay_MZ",
                                "skin": "9"
                            },
                            "etg": "1040,10048",
                            "searchUrl": "https://wqsou.jd.com/coprsearch/prsearch?promotion_aggregation=yes&activity_id=299631861510&pro_d=%E6%BB%A1%E8%B5%A0&pro_s=%E6%BB%A1300%E5%85%83%E3%80%811500%E5%85%83%E3%80%813000%E5%85%83%E3%80%815000%E5%85%83%E5%8F%AF%E5%BE%97%E7%9B%B8%E5%BA%94%E8%B5%A0%E5%93%81%EF%BC%8C%E8%B5%A0%E5%AE%8C%E5%8D%B3%E6%AD%A2%EF%BC%8C%E8%AF%B7%E5%9C%A8%E8%B4%AD%E7%89%A9%E8%BD%A6%E7%82%B9%E5%87%BB%E9%A2%86%E5%8F%96&filt_type=productext2,b40v0",
                            "st": "1747718700",
                            "isBeauty": true,
                            "d": "1779206399",
                            "promoType": 10,
                            "ori": "1",
                            "subextinfo": "{\"extType\":16,\"subExtType\":28,\"subRuleList\":[{\"needMoney\":\"300\",\"optionalGiftNum\":\"1\",\"subRuleList\":[]},{\"needMoney\":\"1500\",\"optionalGiftNum\":\"1\",\"subRuleList\":[]},{\"needMoney\":\"3000\",\"optionalGiftNum\":\"1\",\"subRuleList\":[]},{\"needMoney\":\"5000\",\"optionalGiftNum\":\"1\",\"subRuleList\":[]}]}",
                            "subPromoType": 4001
                        }
                    ],
                    "beauty": true
                }
            ],
            "allOverImg": "",
            "mainVideoId": "2720014170",
            "infoVideoId": "",
            "plusMemberType": "",
            "magicLevel": "",
            "plusFlag": "",
            "chnImg": [],
            "yuyueDraw": "",
            "hasYuyue": "0",
            "rankInfo": [
                {
                    "id": "100033031708",
                    "rankId": "3622391",
                    "name": "淡化细纹护肤套装礼盒热卖榜第12名",
                    "jump": "openapp.jdmobile://virtual?params={\"ishidden\":true,\"des\":\"jdreactcommon\",\"appname\":\"JDReactRankingList\",\"param\":{\"detailPageType\":\"5\",\"rankType\":\"10\",\"contentId\":\"3622391\",\"fromSkuId\":\"100033031708\"},\"fromName\":\"ProductdetailM\",\"modulename\":\"JDReactRankingList\",\"category\":\"jump\"}",
                    "rankTypeInt": 10,
                    "jumpTypeInt": 1,
                    "rankNum": 12,
                    "h5JumpUrl": "https://pro.m.jd.com/mall/active/31rhHxMvPQ3A3K1ckTXFz1wdrd4f/index.html?showhead=no&has_native=0&indParam=%7B%22rankId%22:%223622391%22,%22fromName%22:%22ProductdetailM%22,%22preSrc%22:%22null%22,%22currSku%22:%22100033031708%22%7D",
                    "floorBgImage": "https://m.360buyimg.com/rank/jfs/t1/220210/4/8105/116413/61bc3900E23032be5/9c15402c352382e4.png",
                    "floorIcon": "https://img10.360buyimg.com/img/jfs/t1/20724/31/20118/5100/6386d180Ef7435661/b73a0d4e3f653a22.png",
                    "floorPosition": 2,
                    "floorRightArrowIcon": "https://m.360buyimg.com/rank/jfs/t1/206038/6/18674/1888/61bc390aE2a46f19b/321efee30a5a8e65.png",
                    "rankTextColor": "#FA2C19",
                    "skuPoolType": 0,
                    "title": "护肤套装榜",
                    "longTitle": "淡化细纹护肤套装礼盒榜",
                    "channelEntryTitle": "淡化细纹护肤套装礼盒热卖榜",
                    "shortTitle": "护肤套装",
                    "assitTitle": "淡化细纹",
                    "userType": 0,
                    "benefitColor": "#FC786C",
                    "rankTextSize": "14",
                    "benefitSize": "14",
                    "poolId": 50070,
                    "clkSrv": "{\"algSrv\":\"\",\"adanosSrv\":\"\",\"searchWord\":\"\",\"searchLastRankId\":\"\",\"interveneId\":\"\",\"channel\":\"\"}",
                    "revertTracking": {
                        "algSrv": "",
                        "adanosSrv": "",
                        "searchWord": "",
                        "searchLastRankId": "",
                        "interveneId": "",
                        "channel": ""
                    },
                    "paramBelongs2UIExp": false,
                    "textBold": false
                }
            ],
            "isMaskSku": "",
            "hasSubscribe": "",
            "ruId": "",
            "model3DId": "",
            "wq_addr": "",
            "isFestival": "",
            "upc": "100033031708",
            "daojia": "",
            "isNeedEncrypt": "",
            "huanUrl": "",
            "slowPayItem": "",
            "slowPayItemUrl": "",
            "rightUpImg": "",
            "jdliveExplainStatus": {
                "skuStatus": "1",
                "icon": "https://img30.360buyimg.com/livecms/jfs/t1/136763/11/7039/51969/5f364701E385151ca/d68109c9792f060a.gif",
                "h5Url": "https://lives.jd.com/#/36880950?origin=22&appid=msx",
                "liveType": "0"
            },
            "flag": {
                "plusVender": "0"
            },
            "pricerate": {
                "ratetype": "",
                "rate": ""
            },
            "digitalCurrencyTips": "",
            "shareInfo": {
                "title": "兰蔻菁纯套装水+眼霜+菁纯面霜30ml紧致滋润护肤套装生日礼物送女友",
                "shortTitle": "",
                "bybtTitle": "",
                "batchId": 0,
                "discount": 0,
                "couponType": 0,
                "couponStyle": 0
            },
            "bottomNav": {
                "enable": true,
                "viewId": "normalBuy",
                "viewName": "正常购买",
                "left": {
                    "enable": true,
                    "type": "left",
                    "text": "加入购物车",
                    "textColor": "",
                    "subText": "",
                    "backgroundColor": "linear-gradient(135deg,#f2140c,#f2270c 70%,#f24d0c);",
                    "waver": true,
                    "eventId": 2,
                    "eventUrl": ""
                },
                "right": {
                    "enable": true,
                    "type": "right",
                    "text": "立即购买",
                    "textColor": "",
                    "subText": "",
                    "backgroundColor": "linear-gradient(135deg,#ffba0d,#ffc30d 69%,#ffcf0d);",
                    "waver": true,
                    "eventId": 3,
                    "eventUrl": "//trade.m.jd.com/pay?sceneval=2&scene=jd&isCanEdit=1&EncryptInfo=&Token=&bid=&type=0&lg=0&supm=0"
                },
                "tips": {
                    "text": "",
                    "backgroupColor": "",
                    "textColor": "",
                    "amsg": "",
                    "amsgUrl": ""
                },
                "popup": {
                    "title": "",
                    "content": "",
                    "leftButton": "",
                    "rightButton": ""
                },
                "customerServiceLink": "https://jdcs.m.jd.com/?sku=100033031708&entry=m_item"
            },
            "_ddf": "ti3",
            "format_check": "ok"
        },
        "error": "",
        "secache": "abaeda5de177a7c63273c09f97f68c5f",
        "secache_time": 1751015950,
        "secache_date": "2025-06-27 17:19:10",
        "reason": "",
        "error_code": "0000",
        "cache": 0,
        "api_info": "today: max:15000 all[=++];expires:2031-01-01",
        "execution_time": "1.458",
        "server_time": "Beijing/2025-06-27 17:19:10",
        "client_ip": "127.0.0.1",
        "call_args": {
            "num_iid": "100033031708"
        },
        "api_type": "jd",
        "server_memory": "3.62MB",
        "last_id": false
    }
    异常示例
    {
    	"error": "item-not-found",
    	"reason": "item-not-found 接口文档:https://open.onebound.cn/help/api/jd.item_get_app.html",
    	"error_code": "2000",
    	"api_info": "today:1 max:11000",
    	"execution_time": "0.898",
    	"server_time": "Beijing/2025-06-27 09:14:13",
    	"client_ip": "106.6.32.222",
    	"api_type": "jd",
    	"translate_language": "zh-CN",
    	"translate_engine": "google_new",
    	"server_memory": "3.36MB",
    	"request_id": "gw-1.62522f64332a5"}
    相关资料
    错误码解释
    状态代码(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 万邦科技企业微信