请求地址: https://api-gw.onebound.cn/jd/item_get_app
请求参数:num_iid=10335871600&domain_type=jd
参数说明:item_id:商品ID domain_type:站点名称(京东工业:gongye;京东医药:yiyao;全球购,国际:hk; 京东自营:jd)
Version: Date:
-- 请求示例 url 默认请求参数已经URL编码处理 curl -i "https://api-gw.onebound.cn/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd"
<?php // 请求示例 url 默认请求参数已经URL编码处理 // 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.onebound.cn/help/demo/sdk/demo-sign.php $method = "GET"; $url = "https://api-gw.onebound.cn/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd"; $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" =>"jd", "api_name" =>"item_get_app", "api_params"=>array ( 'num_iid' => '10335871600', 'domain_type' => 'jd', ) ) ); 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/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd"; 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/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd"; 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/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd" 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/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd", 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/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({"num_iid":"10335871600","domain_type":"jd"})// 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":"jd", "api_name" : "item_get_app", "api_params": {"num_iid":"10335871600","domain_type":"jd"}//num_iid=10335871600&domain_type=jd,#具体参数请参考文档说明 }, function(e){ document.querySelector("#api_data_box").innerHTML=JSON.stringify(e) } ); </script>
require "net/http" require "uri" url = URI("https://api-gw.onebound.cn/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd") 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/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd")! 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/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd"]; 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/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd"; 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/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd"); 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/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd", (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/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd") 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/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd")?; let mut content = String::new(); resp.read_to_string(&mut content)?; println!("{}", content); Ok(()) }
{ "item": { "Color": [ "04浅绿色【高品质31.5】", "04黑色【高品质31.5】", "04粉红色【高品质31.5】", "黑色", "卡其色" ], "Size": [ "L 110-125斤", "S 85-95斤", "M 95-110斤", "XL 125-135斤" ], "blacklist": { "category": [ [ 9987, 6880 ] ] }, "goodComment": "83", "image": "jfs/t1/268395/33/26315/45911/67c2c1f0Fe5c9af46/2767046307ca59c7.jpg", "isFlashBuy": 0, "isJingxi": 0, "item": { "Color": [ "04浅绿色【高品质31.5】", "04黑色【高品质31.5】", "04粉红色【高品质31.5】", "黑色", "卡其色" ], "ColorSize": [ { "Color": "04浅绿色【高品质31.5】", "ColorSequence": "1", "Size": "L 110-125斤", "SizeSequence": "1", "SkuId": "10105788825986", "Spec": "", "SpecName": "", "SpecSequence": "0" }, { "Color": "04黑色【高品质31.5】", "ColorSequence": "2", "Size": "L 110-125斤", "SizeSequence": "1", "SkuId": "10105788825990", "Spec": "", "SpecName": "", "SpecSequence": "0" }, { "Color": "04粉红色【高品质31.5】", "ColorSequence": "3", "Size": "L 110-125斤", "SizeSequence": "1", "SkuId": "10105788825994", "Spec": "", "SpecName": "", "SpecSequence": "0" }, { "Color": "黑色", "ColorSequence": "4", "Size": "L 110-125斤", "SizeSequence": "1", "SkuId": "10105055091043", "Spec": "", "SpecName": "", "SpecSequence": "0" }, { "Color": "卡其色", "ColorSequence": "5", "Size": "L 110-125斤", "SizeSequence": "1", "SkuId": "10105055091048", "Spec": "", "SpecName": "", "SpecSequence": "0" }, { "Color": "04浅绿色【高品质31.5】", "ColorSequence": "1", "Size": "S 85-95斤", "SizeSequence": "2", "SkuId": "10105788825987", "Spec": "", "SpecName": "", "SpecSequence": "0" }, { "Color": "04黑色【高品质31.5】", "ColorSequence": "2", "Size": "S 85-95斤", "SizeSequence": "2", "SkuId": "10105788825991", "Spec": "", "SpecName": "", "SpecSequence": "0" }, { "Color": "04粉红色【高品质31.5】", "ColorSequence": "3", "Size": "S 85-95斤", "SizeSequence": "2", "SkuId": "10105788825995", "Spec": "", "SpecName": "", "SpecSequence": "0" }, { "Color": "黑色", "ColorSequence": "4", "Size": "S 85-95斤", "SizeSequence": "2", "SkuId": "10105055091044", "Spec": "", "SpecName": "", "SpecSequence": "0" }, { "Color": "卡其色", "ColorSequence": "5", "Size": "S 85-95斤", "SizeSequence": "2", "SkuId": "10105055091049", "Spec": "", "SpecName": "", "SpecSequence": "0" }, { "Color": "04浅绿色【高品质31.5】", "ColorSequence": "1", "Size": "M 95-110斤", "SizeSequence": "3", "SkuId": "10105788825988", "Spec": "", "SpecName": "", "SpecSequence": "0" }, { "Color": "04黑色【高品质31.5】", "ColorSequence": "2", "Size": "M 95-110斤", "SizeSequence": "3", "SkuId": "10105788825992", "Spec": "", "SpecName": "", "SpecSequence": "0" }, { "Color": "04粉红色【高品质31.5】", "ColorSequence": "3", "Size": "M 95-110斤", "SizeSequence": "3", "SkuId": "10105788825996", "Spec": "", "SpecName": "", "SpecSequence": "0" }, { "Color": "黑色", "ColorSequence": "4", "Size": "M 95-110斤", "SizeSequence": "3", "SkuId": "10105055091045", "Spec": "", "SpecName": "", "SpecSequence": "0" }, { "Color": "卡其色", "ColorSequence": "5", "Size": "M 95-110斤", "SizeSequence": "3", "SkuId": "10105055091050", "Spec": "", "SpecName": "", "SpecSequence": "0" }, { "Color": "04浅绿色【高品质31.5】", "ColorSequence": "1", "Size": "XL 125-135斤", "SizeSequence": "4", "SkuId": "10105788825989", "Spec": "", "SpecName": "", "SpecSequence": "0" }, { "Color": "04黑色【高品质31.5】", "ColorSequence": "2", "Size": "XL 125-135斤", "SizeSequence": "4", "SkuId": "10105788825993", "Spec": "", "SpecName": "", "SpecSequence": "0" }, { "Color": "04粉红色【高品质31.5】", "ColorSequence": "3", "Size": "XL 125-135斤", "SizeSequence": "4", "SkuId": "10105788825997", "Spec": "", "SpecName": "", "SpecSequence": "0" }, { "Color": "黑色", "ColorSequence": "4", "Size": "XL 125-135斤", "SizeSequence": "4", "SkuId": "10105055091046", "Spec": "", "SpecName": "", "SpecSequence": "0" }, { "Color": "卡其色", "ColorSequence": "5", "Size": "XL 125-135斤", "SizeSequence": "4", "SkuId": "10105055091051", "Spec": "", "SpecName": "", "SpecSequence": "0" } ], "Size": [ "L 110-125斤", "S 85-95斤", "M 95-110斤", "XL 125-135斤" ], "Spec": [ "" ], "areaSkuId": "10105788825987", "attr": "deliveryTimeType,thwa,areaLimitTrans,isUDSAttr,is7ToReturn,zyyfmb,isPayFirst", "brandId": "683296", "brandName": "棉致", "category": [ "1315", "1343", "9717" ], "description": "d10025858188299", "errCode": "0", "expandAttrDesc": { "上市时间": [ "2024年夏季" ], "功能": [ "速干" ], "厚度": [ "薄款" ], "弹力": [ "微弹" ], "日韩风": [ "韩版" ], "材质": [ "涤纶(聚酯纤维)95%" ], "腰型": [ "高腰" ], "裤长": [ "长裤" ], "裤门襟": [ "系带" ], "适用场景": [ "日常", "运动" ], "适用年龄": [ "18-24周岁", "25-29周岁", "30-34周岁" ], "风格": [ "日韩风" ] }, "image": [ "jfs/t1/268395/33/26315/45911/67c2c1f0Fe5c9af46/2767046307ca59c7.jpg", "jfs/t1/258517/37/26284/69780/67c2c1f1Fd90bb83e/723480ac4a444cae.jpg", "jfs/t1/267829/23/26270/74061/67c2c1f3Fea2ab19f/a1a72f13b29d145a.jpg", "jfs/t1/260133/22/26346/63005/67c2c1f4F44b427ea/de4ce74690107586.jpg", "jfs/t1/252647/10/27157/82323/67c2c1f5F6aba6893/4188a75474b69dca.jpg", "jfs/t1/255682/19/26875/66253/67c2c1f6Fe834202e/f564ca63549d2cb4.jpg", "jfs/t1/267637/40/26316/80105/67c2c1f7F2c66bd17/3f07c196f2b55738.jpg", "jfs/t1/265673/20/26293/54177/67c2c1f9Ff64b47f7/8ab1762ee4e4aeba.jpg", "jfs/t1/268419/28/26443/65720/67c2c1f9F3d3baba6/6542d4995b6ce59c.jpg" ], "isPop": true, "mainVideoPath": null, "newColorSize": [ { "1": "04浅绿色【高品质31.5】", "2": "L 110-125斤", "3": "", "dist": 0, "imagePath": "jfs/t1/268395/33/26315/45911/67c2c1f0Fe5c9af46/2767046307ca59c7.jpg", "index": 1, "longImagePath": "jfs/t1/256864/5/26704/60981/67c2c207Fca05cad7/b968a28df5938f3b.jpg", "sequenceNo1": 1, "sequenceNo2": 1, "sequenceNo3": 0, "skuId": 10105788825986, "skuStatus": 1, "specName": "", "yn": 1 }, { "1": "04浅绿色【高品质31.5】", "2": "S 85-95斤", "3": "", "dist": 0, "imagePath": "jfs/t1/268395/33/26315/45911/67c2c1f0Fe5c9af46/2767046307ca59c7.jpg", "index": 2, "longImagePath": "jfs/t1/256864/5/26704/60981/67c2c207Fca05cad7/b968a28df5938f3b.jpg", "sequenceNo1": 1, "sequenceNo2": 2, "sequenceNo3": 0, "skuId": 10105788825987, "skuStatus": 1, "specName": "", "yn": 1 }, { "1": "04浅绿色【高品质31.5】", "2": "M 95-110斤", "3": "", "dist": 0, "imagePath": "jfs/t1/268395/33/26315/45911/67c2c1f0Fe5c9af46/2767046307ca59c7.jpg", "index": 3, "longImagePath": "jfs/t1/256864/5/26704/60981/67c2c207Fca05cad7/b968a28df5938f3b.jpg", "sequenceNo1": 1, "sequenceNo2": 3, "sequenceNo3": 0, "skuId": 10105788825988, "skuStatus": 1, "specName": "", "yn": 1 }, { "1": "04浅绿色【高品质31.5】", "2": "XL 125-135斤", "3": "", "dist": 0, "imagePath": "jfs/t1/268395/33/26315/45911/67c2c1f0Fe5c9af46/2767046307ca59c7.jpg", "index": 4, "longImagePath": "jfs/t1/256864/5/26704/60981/67c2c207Fca05cad7/b968a28df5938f3b.jpg", "sequenceNo1": 1, "sequenceNo2": 4, "sequenceNo3": 0, "skuId": 10105788825989, "skuStatus": 1, "specName": "", "yn": 1 }, { "1": "04黑色【高品质31.5】", "2": "L 110-125斤", "3": "", "dist": 0, "imagePath": "jfs/t1/258517/37/26284/69780/67c2c1f1Fd90bb83e/723480ac4a444cae.jpg", "index": 5, "longImagePath": "jfs/t1/262908/17/26322/100850/67c2c208Fa259f83e/76410ae35ce232dc.jpg", "sequenceNo1": 2, "sequenceNo2": 1, "sequenceNo3": 0, "skuId": 10105788825990, "skuStatus": 1, "specName": "", "yn": 1 }, { "1": "04黑色【高品质31.5】", "2": "S 85-95斤", "3": "", "dist": 0, "imagePath": "jfs/t1/258517/37/26284/69780/67c2c1f1Fd90bb83e/723480ac4a444cae.jpg", "index": 6, "longImagePath": "jfs/t1/262908/17/26322/100850/67c2c208Fa259f83e/76410ae35ce232dc.jpg", "sequenceNo1": 2, "sequenceNo2": 2, "sequenceNo3": 0, "skuId": 10105788825991, "skuStatus": 1, "specName": "", "yn": 1 }, { "1": "04黑色【高品质31.5】", "2": "M 95-110斤", "3": "", "dist": 0, "imagePath": "jfs/t1/258517/37/26284/69780/67c2c1f1Fd90bb83e/723480ac4a444cae.jpg", "index": 7, "longImagePath": "jfs/t1/262908/17/26322/100850/67c2c208Fa259f83e/76410ae35ce232dc.jpg", "sequenceNo1": 2, "sequenceNo2": 3, "sequenceNo3": 0, "skuId": 10105788825992, "skuStatus": 1, "specName": "", "yn": 1 }, { "1": "04黑色【高品质31.5】", "2": "XL 125-135斤", "3": "", "dist": 0, "imagePath": "jfs/t1/258517/37/26284/69780/67c2c1f1Fd90bb83e/723480ac4a444cae.jpg", "index": 8, "longImagePath": "jfs/t1/262908/17/26322/100850/67c2c208Fa259f83e/76410ae35ce232dc.jpg", "sequenceNo1": 2, "sequenceNo2": 4, "sequenceNo3": 0, "skuId": 10105788825993, "skuStatus": 1, "specName": "", "yn": 1 }, { "1": "04粉红色【高品质31.5】", "2": "L 110-125斤", "3": "", "dist": 0, "imagePath": "jfs/t1/267829/23/26270/74061/67c2c1f3Fea2ab19f/a1a72f13b29d145a.jpg", "index": 9, "longImagePath": "jfs/t1/260216/31/26383/113196/67c2c209F11415e44/7df1dd21a54bfe31.jpg", "sequenceNo1": 3, "sequenceNo2": 1, "sequenceNo3": 0, "skuId": 10105788825994, "skuStatus": 1, "specName": "", "yn": 1 }, { "1": "04粉红色【高品质31.5】", "2": "S 85-95斤", "3": "", "dist": 0, "imagePath": "jfs/t1/267829/23/26270/74061/67c2c1f3Fea2ab19f/a1a72f13b29d145a.jpg", "index": 10, "longImagePath": "jfs/t1/260216/31/26383/113196/67c2c209F11415e44/7df1dd21a54bfe31.jpg", "sequenceNo1": 3, "sequenceNo2": 2, "sequenceNo3": 0, "skuId": 10105788825995, "skuStatus": 1, "specName": "", "yn": 1 }, { "1": "04粉红色【高品质31.5】", "2": "M 95-110斤", "3": "", "dist": 0, "imagePath": "jfs/t1/267829/23/26270/74061/67c2c1f3Fea2ab19f/a1a72f13b29d145a.jpg", "index": 11, "longImagePath": "jfs/t1/260216/31/26383/113196/67c2c209F11415e44/7df1dd21a54bfe31.jpg", "sequenceNo1": 3, "sequenceNo2": 3, "sequenceNo3": 0, "skuId": 10105788825996, "skuStatus": 1, "specName": "", "yn": 1 }, { "1": "04粉红色【高品质31.5】", "2": "XL 125-135斤", "3": "", "dist": 0, "imagePath": "jfs/t1/267829/23/26270/74061/67c2c1f3Fea2ab19f/a1a72f13b29d145a.jpg", "index": 12, "longImagePath": "jfs/t1/260216/31/26383/113196/67c2c209F11415e44/7df1dd21a54bfe31.jpg", "sequenceNo1": 3, "sequenceNo2": 4, "sequenceNo3": 0, "skuId": 10105788825997, "skuStatus": 1, "specName": "", "yn": 1 }, { "1": "黑色", "2": "L 110-125斤", "3": "", "dist": 0, "imagePath": "jfs/t1/263559/9/26338/154108/67c2c1e7F85d71c44/1e00a5b9311b5ca3.jpg", "index": 13, "longImagePath": "jfs/t1/256100/17/27019/131261/67c2c1fcF37ed79f6/27502bd5556d5f99.jpg", "sequenceNo1": 4, "sequenceNo2": 1, "sequenceNo3": 0, "skuId": 10105055091043, "skuStatus": 1, "specName": "", "yn": 1 }, { "1": "黑色", "2": "S 85-95斤", "3": "", "dist": 0, "imagePath": "jfs/t1/263559/9/26338/154108/67c2c1e7F85d71c44/1e00a5b9311b5ca3.jpg", "index": 14, "longImagePath": "jfs/t1/256100/17/27019/131261/67c2c1fcF37ed79f6/27502bd5556d5f99.jpg", "sequenceNo1": 4, "sequenceNo2": 2, "sequenceNo3": 0, "skuId": 10105055091044, "skuStatus": 1, "specName": "", "yn": 1 }, { "1": "黑色", "2": "M 95-110斤", "3": "", "dist": 0, "imagePath": "jfs/t1/263559/9/26338/154108/67c2c1e7F85d71c44/1e00a5b9311b5ca3.jpg", "index": 15, "longImagePath": "jfs/t1/256100/17/27019/131261/67c2c1fcF37ed79f6/27502bd5556d5f99.jpg", "sequenceNo1": 4, "sequenceNo2": 3, "sequenceNo3": 0, "skuId": 10105055091045, "skuStatus": 1, "specName": "", "yn": 1 }, { "1": "黑色", "2": "XL 125-135斤", "3": "", "dist": 0, "imagePath": "jfs/t1/263559/9/26338/154108/67c2c1e7F85d71c44/1e00a5b9311b5ca3.jpg", "index": 16, "longImagePath": "jfs/t1/256100/17/27019/131261/67c2c1fcF37ed79f6/27502bd5556d5f99.jpg", "sequenceNo1": 4, "sequenceNo2": 4, "sequenceNo3": 0, "skuId": 10105055091046, "skuStatus": 1, "specName": "", "yn": 1 }, { "1": "卡其色", "2": "L 110-125斤", "3": "", "dist": 0, "imagePath": "jfs/t1/255014/37/27086/154200/67c2c1ebFbcd1e725/2ccf5a8c4bfb858b.jpg", "index": 17, "longImagePath": "jfs/t1/254409/2/27238/136729/67c2c200Fda73ab30/e81e28f69927ff76.jpg", "sequenceNo1": 5, "sequenceNo2": 1, "sequenceNo3": 0, "skuId": 10105055091048, "skuStatus": 1, "specName": "", "yn": 1 }, { "1": "卡其色", "2": "S 85-95斤", "3": "", "dist": 0, "imagePath": "jfs/t1/255014/37/27086/154200/67c2c1ebFbcd1e725/2ccf5a8c4bfb858b.jpg", "index": 18, "longImagePath": "jfs/t1/254409/2/27238/136729/67c2c200Fda73ab30/e81e28f69927ff76.jpg", "sequenceNo1": 5, "sequenceNo2": 2, "sequenceNo3": 0, "skuId": 10105055091049, "skuStatus": 1, "specName": "", "yn": 1 }, { "1": "卡其色", "2": "M 95-110斤", "3": "", "dist": 0, "imagePath": "jfs/t1/255014/37/27086/154200/67c2c1ebFbcd1e725/2ccf5a8c4bfb858b.jpg", "index": 19, "longImagePath": "jfs/t1/254409/2/27238/136729/67c2c200Fda73ab30/e81e28f69927ff76.jpg", "sequenceNo1": 5, "sequenceNo2": 3, "sequenceNo3": 0, "skuId": 10105055091050, "skuStatus": 1, "specName": "", "yn": 1 }, { "1": "卡其色", "2": "XL 125-135斤", "3": "", "dist": 0, "imagePath": "jfs/t1/255014/37/27086/154200/67c2c1ebFbcd1e725/2ccf5a8c4bfb858b.jpg", "index": 20, "longImagePath": "jfs/t1/254409/2/27238/136729/67c2c200Fda73ab30/e81e28f69927ff76.jpg", "sequenceNo1": 5, "sequenceNo2": 4, "sequenceNo3": 0, "skuId": 10105055091051, "skuStatus": 1, "specName": "", "yn": 1 } ], "pName": "棉致薄款速干冰丝工装裤子女夏季新款小个子高腰阔腿休闲裤女 04浅绿色【高品质31.5】 S 85-95斤", "pTag": 10006571, "productArea": null, "productKO": null, "retCode": "1", "saleProp": { "1": "颜色", "2": "尺码", "3": "", "4": "属性4", "5": "属性5", "6": "属性6", "7": "属性7", "8": "属性8", "9": "属性9", "10": "属性10", "11": "属性11", "12": "属性12", "13": "属性13", "14": "属性14", "15": "属性15", "16": "属性16", "17": "属性17", "18": "属性18", "19": "属性19", "20": "属性20" }, "salePropSeq": { "1": [ "04浅绿色【高品质31.5】", "04黑色【高品质31.5】", "04粉红色【高品质31.5】", "黑色", "卡其色" ], "2": [ "L 110-125斤", "S 85-95斤", "M 95-110斤", "XL 125-135斤" ], "3": [ "" ], "4": [], "5": [], "6": [], "7": [], "8": [], "9": [], "10": [], "11": [], "12": [], "13": [], "14": [], "15": [], "16": [], "17": [], "18": [], "19": [], "20": [] }, "saleUnit": null, "shopInfo": { "logo": "//img30.360buyimg.com/popshop/jfs/t1/249707/21/2955/4034/65a12e21Fc091bf66/406c128c045d3a63.jpg", "name": "棉致女装旗舰店", "url": "//mall.jd.com/index-13544209.html?from=pc" }, "skuId": "10105788825987", "skuMark": "{\"isxg\":false,\"isJDexpress\":false,\"isrecyclebag\":false,\"isSds\":false,\"isSopJSOLTag\":false,\"isyy\":false,\"isPOPDistribution\":false,\"isSopUseSelfStock\":false,\"isGlobalPurchase\":false,\"NosendWMS\":false,\"isOripack\":false,\"ispt\":false,\"unused\":false,\"pg\":false,\"isSopWareService\":false,\"isTimeMark\":false,\"presale\":false}", "skuName": "棉致薄款速干冰丝工装裤子女夏季新款小个子高腰阔腿休闲裤女 04浅绿色【高品质31.5】 S 85-95斤", "skuType": "1", "spAttr": { "Customize": "4", "HYKHSP": "0", "LuxuryGoods": "0", "SoldOversea": "7", "YuShou": "0", "YuShouNoWay": "0", "areaLimitTrans": "1", "deliveryTimeType": "1", "fply": "jospop", "fylx": "3", "introductionUseFlag": "0", "is7ToReturn": "1", "isCanVAT": "0", "isCartshield": "0", "isEbay": "0", "isKO": "0", "isLOC": "0", "isOTCCat": "0", "isOverseaPurchase": "0", "isPayFirst": "1", "isSupermarket": "0", "isUDSAttr": "1", "isXnzt": "0", "isvat": "0", "maxBuyTimes": "11", "mobileDescUseFlag": "0", "nameBrandType": "brandtitlecn_name", "nameWithoutBrand": "薄款速干冰丝工装裤子女夏季新款小个子高腰阔腿休闲裤女", "popsfkc": "0", "salemodel": "POP_MODEL", "scsj": "1716892641933", "sfkc": "0", "thwa": "1", "vender_bizid": ",popsop,", "wlzyc": "29|26|31|30|11|28", "ztSale": "1000012777", "ztzs": "10106878947953", "zyyfmb": "1" }, "specification": "g10105788825987", "venderID": "14742825", "wTax": null, "warestatus": "1", "weight": null }, "price": { "bp": "", "bybt": 0, "id": "10105788825987", "l": "", "m": "118.00", "op": "69.90", "p": "69.90", "sp": "", "tpp": "" }, "skuName": "棉致薄款速干冰丝工装裤子女夏季新款小个子高腰阔腿休闲裤女 04浅绿色【高品质31.5】 S 85-95斤", "stock": { "ArrivalDate": "", "D": { "cg": "1315:1343:9717", "colType": 0, "deliver": "棉致女装旗舰店", "df": "", "id": 13544209, "linkphone": "", "po": "true", "type": 0, "url": "//mall.jd.com/index-13544209.html", "vender": "棉致女装旗舰店", "vid": 14742825 }, "Dc": [ { "dcash": 0, "dtype": 4, "freihtType": 1, "ordermin": 59 } ], "Dti": null, "Ext": "thwa:1,SoldOversea:7,sfkc:0,fare:0,platform,is7ToReturn:1,myss", "IsPurchase": false, "PlusFlagInfo": "", "PopType": 0, "StockState": 33, "StockStateName": "现货", "ab": "-1", "ac": "-1", "ad": "-1", "ae": "-1", "af": "-1", "afsCode": 1, "ag": "-1", "area": { "cityName": "朝阳区", "countyName": "三环到四环之间", "provinceName": "北京", "success": true, "townName": "" }, "channel": 1, "cla": [], "code": 1, "dc": "-1", "dcId": "-1", "dcashDesc": "包邮(请以提交订单时为准) <a title=\"了解配送费收取标准\" href=\"//help.jd.com/user/issue/109-188.html\" target=\"_blank\"><i class=\"sprite-question\"></i></a>", "eb": "99", "ec": "-1", "freeFlag": 1, "freshEdi": null, "identities": null, "ir": [ { "helpLink": "http://help.jd.com/user/issue/290-3714.html", "iconCode": "service_popshantui", "iconServiceType": 3, "iconSrc": "闪电退款", "iconTip": "京东优质用户以7天无理由相关原因提交售后退货申请时,满足相关条件可立刻退款", "iconType": 0, "picUrl": "http://img13.360buyimg.com/cms/jfs/t8257/155/2373859204/1377/8efa0c8c/59ccc2d5N7df90ecd.png", "resultCode": 1, "showName": "闪电退款" }, { "helpLink": "http://help.jd.com/user/issue/list-114-470.html", "iconCode": "pop_quick_audit", "iconServiceType": 3, "iconSrc": "极速审核", "iconTip": "京东优质用户以7天无理由相关原因提交售后申请时,满足相关条件最快0秒审核通过的服务", "iconType": 0, "picUrl": "http://static.360buyimg.com/item/assets/picon/jisushenhe.png", "resultCode": 1, "showName": "极速审核" }, { "helpLink": "http://help.jd.com/user/issue/290-3785.html", "iconCode": "service_7baojia", "iconServiceType": 3, "iconSrc": "7天价保", "iconTip": " 在下单后7天内,商品出现降价可享受价保服务,部分特殊场景不支持价保,可点击\">\"了解详细规则", "iconType": 0, "picUrl": "http://img13.360buyimg.com/cms/jfs/t18214/203/2393977003/1305/e012183a/5af400a6Nb97a8af0.png", "resultCode": 1, "showName": "7天价保" } ], "isJDexpress": "0", "isPlus": false, "isSam": false, "isSopUseSelfStock": "0", "isWalMar": false, "jdPrice": { "ext": "{\"ORIGINAL\":{\"salePrice\":\"69.90\"}}", "id": "10105788825987", "m": "118.00", "op": "69.90", "p": "69.90", "up": null }, "m": "0", "nationallySetWare": null, "popFxgCode": "0", "pr": { "promiseResult": "预计明天发货,4月5日24:00前送达", "resultCode": 1, "yiQing": false }, "promiseMark": "支持7天无理由退货", "promiseResult": "预计明天发货,4月5日24:00前送达", "promiseYX": { "helpLink": "http://help.jd.com/user/issue/289-3781.html", "iconCode": "service_qitiantuihuo", "iconServiceType": 3, "iconSrc": "7天无理由退货", "iconTip": "支持7天无理由退货", "iconType": 0, "picUrl": "\", "resultCode": 1, "showName": "7天无理由退货" }, "realSkuId": 10105788825987, "rfg": 0, "rid": "0", "rn": -1, "serviceInfo": "由<a href=http://mall.jd.com/index-13544209.html target=_blank clstag=shangpin|keycount|product|bbtn class=hl_red>棉致女装旗舰店</a>发货, 并提供售后服务. ", "shopLevel": null, "shopMemberStatus": null, "sid": "-1", "sidDely": "-1", "skuId": 10105788825987, "skuState": 1, "sr": null, "stockDesc": "<strong>有货</strong>", "support": [], "v": "0", "vd": null, "venderType": "0", "weightValue": null, "yjhxMap": [] }, "_ddf": "szx", "format_check": "ok" }, "error": "", "secache": "2ccc8eaf58f633bdf5939ae6efa6c4f2", "secache_time": 1775091962, "secache_date": "2026-04-02 09:06:02", "reason": "", "error_code": "0000", "cache": 0, "api_info": "today:64 max:10000 all[261=64+55+142];expires:2030-02-19", "execution_time": "4.927", "server_time": "Beijing/2026-04-02 09:06:02", "client_ip": "106.6.43.207", "call_args": { "num_iid": "10105788825987" }, "api_type": "jd", "translate_language": "zh-CN", "translate_engine": "baidu", "server_memory": "3.54MB", "request_id": "gw-1.69cdc0f6192f4", "last_id": "delay" }
{ "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-07-01 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"}