万邦京东搜索相似的商品 API 返回值说明

item_search_similar-搜索相似的商品 [查看演示] API测试工具 注册开通

onebound.jd.item_search_similar

公共参数

请求地址: https://api-gw.onebound.cn/jd/item_search_similar

名称 类型 必须 描述
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=10109914323625

参数说明:num_iid:JD商品ID

响应参数

Version: Date:

名称 类型 必须 示例值 描述
items
items[] 0 搜索相似的商品
请求示例
	
-- 请求示例 url 默认请求参数已经URL编码处理
curl -i "https://api-gw.onebound.cn/jd/item_search_similar/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10109914323625"
<?php

// 请求示例 url 默认请求参数已经URL编码处理
// 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.onebound.cn/help/demo/sdk/demo-sign.php
$method = "GET";
$url = "https://api-gw.onebound.cn/jd/item_search_similar/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10109914323625";
$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_search_similar",
	                "api_params"=>array (
  'num_iid' => '10109914323625',
)
                )
            );
 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_search_similar/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10109914323625";
		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_search_similar/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10109914323625";
	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_search_similar/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10109914323625"
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_search_similar/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10109914323625", 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_search_similar/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({"num_iid":"10109914323625"})// 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_search_similar",
     "api_params": {"num_iid":"10109914323625"}//num_iid=10109914323625,#具体参数请参考文档说明
     },
     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_search_similar/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10109914323625")
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_search_similar/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10109914323625")!
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_search_similar/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10109914323625"];

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_search_similar/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10109914323625";
  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_search_similar/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10109914323625");
         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_search_similar/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10109914323625", (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_search_similar/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10109914323625")
    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_search_similar/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10109914323625")?;
    let mut content = String::new();
    resp.read_to_string(&mut content)?;

    println!("{}", content);

    Ok(())
}

响应示例
{
    "page": 1,
    "real_total_results": "",
    "total_results": "",
    "page_size": 20,
    "pagecount": 1,
    "item": [
      {
        "title": "uwant友望洗地机洗拖一体自动清洗悬浮手柄 180°平躺 推入式基站大吸力 三延边清洁 大续航家用洗地机 云朵 Plus",
        "pic_url": "https:////img14.360buyimg.com/n1/jfs/t1/264287/20/10077/144234/677f983cFfe3b993d/662167e186e74220.jpg",
        "num_iid": "10120815069086",
        "price": "1999.00",
        "detail_url": "https://item.m.jd.com/product/10120815069086.html?_fd=jdm&cover=jfs/t1/264287/20/10077/144234/677f983cFfe3b993d/662167e186e74220.jpg&ptag=",
        "good": "98%",
        "reviews": "1000+"
      },
      {
        "title": "戴森(DYSON)WashG1洗地机 高效清洁除菌 自清洁家用洗地机 洗拖一体机 宠物家庭适用 WashG1",
        "pic_url": "https:////img14.360buyimg.com/n1/jfs/t1/265645/16/9355/91570/677cf2b2F6a601e89/7f32c58657056c16.jpg",
        "num_iid": "100069065880",
        "price": "3999.00",
        "detail_url": "https://item.m.jd.com/product/100069065880.html?_fd=jdm&cover=jfs/t1/265645/16/9355/91570/677cf2b2F6a601e89/7f32c58657056c16.jpg&ptag=",
        "good": "94%",
        "reviews": "10000+"
      },
      {
        "title": "追觅H20 C系列无线智能洗地机家用扫地手持吸尘洗拖一体拖地机 热风烘干",
        "pic_url": "https:////img14.360buyimg.com/n1/jfs/t1/268687/33/9836/126476/677f224cF30d6a636/86201e43669667f5.jpg",
        "num_iid": "100033595835",
        "price": "999.00",
        "detail_url": "https://item.m.jd.com/product/100033595835.html?_fd=jdm&cover=jfs/t1/268687/33/9836/126476/677f224cF30d6a636/86201e43669667f5.jpg&ptag=",
        "good": "99%",
        "reviews": "100000+"
      },
      {
        "title": "追觅洗地机T40Ultra 灵捕AI机械臂 浸泡洗  0缠毛平躺洗拖一体自动清洗家用扫地机吸尘器 ",
        "pic_url": "https:////img14.360buyimg.com/n1/jfs/t1/259229/39/9234/103897/677cfb88F6f062d13/8a42bae60f0eb175.png",
        "num_iid": "100117683371",
        "price": "3059.00",
        "detail_url": "https://item.m.jd.com/product/100117683371.html?_fd=jdm&cover=jfs/t1/259229/39/9234/103897/677cfb88F6f062d13/8a42bae60f0eb175.png&ptag=",
        "good": "99%",
        "reviews": "20000+"
      },
      {
        "title": "石头(roborock)A20【平躺清洁三面贴边 高温热水自清洁】无线扫地吸尘洗拖一体拖地机",
        "pic_url": "https:////img14.360buyimg.com/n1/jfs/t1/260446/38/9207/137622/677cdf32F9dd7a48f/235079ae72846fd6.jpg",
        "num_iid": "100084516510",
        "price": "1499.00",
        "detail_url": "https://item.m.jd.com/product/100084516510.html?_fd=jdm&cover=jfs/t1/260446/38/9207/137622/677cdf32F9dd7a48f/235079ae72846fd6.jpg&ptag=",
        "good": "97%",
        "reviews": "20000+"
      },
      {
        "title": "添可智能洗地机芙万2.0Pro S高温极速干恒压活水自清洁家用吸尘扫拖一体机",
        "pic_url": "https:////img14.360buyimg.com/n1/jfs/t1/254658/22/10253/186619/677ca8ccF7e9675f2/f4ccef614c050a8c.jpg",
        "num_iid": "100078977022",
        "price": "1190.00",
        "detail_url": "https://item.m.jd.com/product/100078977022.html?_fd=jdm&cover=jfs/t1/254658/22/10253/186619/677ca8ccF7e9675f2/f4ccef614c050a8c.jpg&ptag=",
        "good": "98%",
        "reviews": "200000+"
      },
      {
        "title": "追觅洗地机H12 Pro无线智能洗烘吸拖扫一体热风速干家用大吸力吸尘器电动拖把 H12 Pro【洗烘一体】",
        "pic_url": "https:////img14.360buyimg.com/n1/jfs/t1/253359/19/9512/100171/677e3ac2F3f0a8514/e76db88bd0e1a6de.jpg",
        "num_iid": "10099948682441",
        "price": "918.00",
        "detail_url": "https://item.m.jd.com/product/10099948682441.html?_fd=jdm&cover=jfs/t1/253359/19/9512/100171/677e3ac2F3f0a8514/e76db88bd0e1a6de.jpg&ptag=",
        "good": "98%",
        "reviews": "5000+"
      },
      {
        "title": "追觅H20 C系列无线家用洗地机双侧0贴边拖吸扫一体机除菌热风烘干 大水箱",
        "pic_url": "https:////img14.360buyimg.com/n1/jfs/t1/257895/6/10248/123069/677f8c0aF269c86c0/6f457615db1985dd.png",
        "num_iid": "10118746340329",
        "price": "999.00",
        "detail_url": "https://item.m.jd.com/product/10118746340329.html?_fd=jdm&cover=jfs/t1/257895/6/10248/123069/677f8c0aF269c86c0/6f457615db1985dd.png&ptag=",
        "good": "99%",
        "reviews": "500+"
      },
      {
        "title": "添可无线智能洗地机芙万Wiper Al巡航助力版 高温全链极速干恒压活水自清洁防缠绕家用吸尘扫拖一体机",
        "pic_url": "https:////img14.360buyimg.com/n1/jfs/t1/259328/34/9093/146718/677ca5afFb89bbc5f/0e2d9a1764cd098b.jpg",
        "num_iid": "100094318495",
        "price": "1790.00",
        "detail_url": "https://item.m.jd.com/product/100094318495.html?_fd=jdm&cover=jfs/t1/259328/34/9093/146718/677ca5afFb89bbc5f/0e2d9a1764cd098b.jpg&ptag=",
        "good": "97%",
        "reviews": "50000+"
      },
      {
        "title": "德尔玛(Deerma)无线双滚刷智能洗地机P20 防缠绕沿边家用洗拖吸一体机电动拖把手持吸尘器扫地机自清洁 p20",
        "pic_url": "https:////img14.360buyimg.com/n1/jfs/t1/263352/30/10193/120097/677f7443F245f859c/829a9df7447a6953.png",
        "num_iid": "100049911096",
        "price": "999.00",
        "detail_url": "https://item.m.jd.com/product/100049911096.html?_fd=jdm&cover=jfs/t1/263352/30/10193/120097/677f7443F245f859c/829a9df7447a6953.png&ptag=",
        "good": "99%",
        "reviews": "50000+"
      },
      {
        "title": "添可洗地机芙万2.0ProLED电解水除菌恒压活水双贴边速干手持家用无线拖地机自清洁吸尘吸拖扫一体机 2.0Pro LED【升级双贴边】",
        "pic_url": "https:////img14.360buyimg.com/n1/jfs/t1/255991/4/9357/113166/677b8d11F77dba102/c8294265608dd46d.png",
        "num_iid": "10111517827299",
        "price": "1167.00",
        "detail_url": "https://item.m.jd.com/product/10111517827299.html?_fd=jdm&cover=jfs/t1/255991/4/9357/113166/677b8d11F77dba102/c8294265608dd46d.png&ptag=",
        "good": "99%",
        "reviews": "2000+"
      },
      {
        "title": "石头(roborock)石头H5手持无线轻量吸尘器【家用除螨大吸力宠物家庭适用】5重过滤 ",
        "pic_url": "https:////img14.360buyimg.com/n1/jfs/t1/266275/6/8664/158016/677b453dFbd5042cc/1883b32b0325e3dd.jpg",
        "num_iid": "100119330519",
        "price": "999.00",
        "detail_url": "https://item.m.jd.com/product/100119330519.html?_fd=jdm&cover=jfs/t1/266275/6/8664/158016/677b453dFbd5042cc/1883b32b0325e3dd.jpg&ptag=",
        "good": "99%",
        "reviews": "1000+"
      },
      {
        "title": "uwant友望 推入式无线智能洗地机 悬浮手柄180°平躺大吸力拖地机擦地机云朵Plus[与Pro Plus同配置]",
        "pic_url": "https:////img14.360buyimg.com/n1/jfs/t1/260553/16/8991/151733/677ca322F39d76af5/0d1d16fe9b532896.jpg",
        "num_iid": "100124203139",
        "price": "1979.00",
        "detail_url": "https://item.m.jd.com/product/100124203139.html?_fd=jdm&cover=jfs/t1/260553/16/8991/151733/677ca322F39d76af5/0d1d16fe9b532896.jpg&ptag=",
        "good": "99%",
        "reviews": "50000+"
      },
      {
        "title": "添可无线洗地机芙万T5 高温全链速干恒压活水双贴边自清洁家用吸尘吸拖扫一体机",
        "pic_url": "https:////img14.360buyimg.com/n1/jfs/t1/263137/12/9172/136897/677ca5ceF01a06d39/bc19e4fd8dfdac2a.jpg",
        "num_iid": "100128620848",
        "price": "1299.00",
        "detail_url": "https://item.m.jd.com/product/100128620848.html?_fd=jdm&cover=jfs/t1/263137/12/9172/136897/677ca5ceF01a06d39/bc19e4fd8dfdac2a.jpg&ptag=",
        "good": "98%",
        "reviews": "200000+"
      },
      {
        "title": "海尔G700小海豚系列【180°平躺 三贴边 0缠毛 除菌烘干】洗地机吸拖一体自动清洗拖地机器人",
        "pic_url": "https:////img14.360buyimg.com/n1/jfs/t1/260590/9/9640/122712/677e3717Fe62a84b8/11e9de13e8e82c9a.jpg",
        "num_iid": "100087890228",
        "price": "1599.00",
        "detail_url": "https://item.m.jd.com/product/100087890228.html?_fd=jdm&cover=jfs/t1/260590/9/9640/122712/677e3717Fe62a84b8/11e9de13e8e82c9a.jpg&ptag=",
        "good": "97%",
        "reviews": "20000+"
      },
      {
        "title": "海尔Z10Pro双助力家用洗地机拖地机洗拖一体自动清洗【双滚刷 毛发切割0缠绕 水膜速干】 吸拖一体",
        "pic_url": "https:////img14.360buyimg.com/n1/jfs/t1/254891/20/10805/133990/677e429bF2535a3ae/820a4ec88b097443.jpg",
        "num_iid": "100056343047",
        "price": "2298.00",
        "detail_url": "https://item.m.jd.com/product/100056343047.html?_fd=jdm&cover=jfs/t1/254891/20/10805/133990/677e429bF2535a3ae/820a4ec88b097443.jpg&ptag=",
        "good": "99%",
        "reviews": "20000+"
      },
      {
        "title": "添可(TINECO)洗地机2.0LED电解水除菌智能家用芙万扫地机拖地机洗拖吸拖一体自动清洁手持吸尘器 芙万2.0LED【贴边除菌智能屏】",
        "pic_url": "https:////img14.360buyimg.com/n1/jfs/t1/250430/10/33539/133292/677e2d5aF275d7497/11539e67f1bd2743.jpg",
        "num_iid": "10035540550441",
        "price": "999.00",
        "detail_url": "https://item.m.jd.com/product/10035540550441.html?_fd=jdm&cover=jfs/t1/250430/10/33539/133292/677e2d5aF275d7497/11539e67f1bd2743.jpg&ptag=",
        "good": "98%",
        "reviews": "20000+"
      },
      {
        "title": "追觅H20 Mix 多功能无线家用除菌扫地洗地机手持吸尘器洗拖一体拖地机自动清洗贴边清洁60°高温热水洗 【60°热水洗 】H20 Mix",
        "pic_url": "https:////img14.360buyimg.com/n1/jfs/t1/264285/21/3918/116292/676e2355Ff4e25e58/023b9d2fdf103a1e.jpg",
        "num_iid": "10094639554941",
        "price": "1799.00",
        "detail_url": "https://item.m.jd.com/product/10094639554941.html?_fd=jdm&cover=jfs/t1/264285/21/3918/116292/676e2355Ff4e25e58/023b9d2fdf103a1e.jpg&ptag=",
        "good": "100%",
        "reviews": "500+"
      },
      {
        "title": "德尔玛(Deerma)智能洗地机 P40pro 家用扫地机吸拖一体除菌吸尘拖地自清洁吸尘器【1机多用组合款 平躺 防缠绕】",
        "pic_url": "https:////img14.360buyimg.com/n1/jfs/t1/263294/1/10165/112128/677f4a0aF989a1612/c43919d9302946bf.png",
        "num_iid": "100136117614",
        "price": "1599.00",
        "detail_url": "https://item.m.jd.com/product/100136117614.html?_fd=jdm&cover=jfs/t1/263294/1/10165/112128/677f4a0aF989a1612/c43919d9302946bf.png&ptag=",
        "good": "98%",
        "reviews": "20000+"
      },
      {
        "title": "美的(Midea)洗地机GX5pro【三面贴边】洗拖吸一体全自动清洗 无线家用防缠绕拖地机 电解水除菌",
        "pic_url": "https:////img14.360buyimg.com/n1/jfs/t1/258562/23/9200/122304/677ca14aFfd4aa33a/8ff2f8ab63ea5028.jpg",
        "num_iid": "100063805319",
        "price": "1399.00",
        "detail_url": "https://item.m.jd.com/product/100063805319.html?_fd=jdm&cover=jfs/t1/258562/23/9200/122304/677ca14aFfd4aa33a/8ff2f8ab63ea5028.jpg&ptag=",
        "good": "99%",
        "reviews": "50000+"
      }
    ],
    "_ddf": "alex",
    "translate_status": "",
    "translate_time": 0,
    "language": {
      "default_lang": "cn",
      "current_lang": "cn"
    },
    "error": "",
    "reason": "",
    "error_code": "0000",
    "cache": 0,
    "api_info": "today:5 max:5000 all[5=5+0+0];expires:2025-12-18",
    "execution_time": "1.991",
    "server_time": "Beijing/2025-01-10 09:56:41",
    "client_ip": "106.6.36.35",
    "call_args": {
      "sample_id": "100098752437"
    },
    "api_type": "jd",
    "translate_language": "zh-CN",
    "translate_engine": "baidu",
    "server_memory": "3.18MB",
    "request_id": "3.67807e575fced",
    "last_id": "3923766272"
  }
异常示例
{
  "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/2025-01-10 09:44:00",
  "call_args": [],
  "api_type": "jd",
  "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(微信同号)