万邦京东获得店铺的所有商品 API 返回值说明

item_search_shop-获得店铺的所有商品 [查看演示] API测试工具 注册开通

onebound.jd.item_search_shop

公共参数

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

名称 类型 必须 描述
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版本
请求参数

请求参数:seller_nick=特步平途专卖店&page=1&sort=

参数说明:seller_nick:店铺名称
page:页数
sort:排序[bid,_bid,_sale,_review,_new] (bid:总价,sale:销量,review评论数,new新品,加_前缀为从大到小排序)

响应参数

Version: Date:

名称 类型 必须 示例值 描述
items
items[] 0 获取店铺商品
请求示例
	
-- 请求示例 url 默认请求参数已经URL编码处理
curl -i "https://api-gw.onebound.cn/jd/item_search_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&seller_nick=特步平途专卖店&page=1&sort="
<?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_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&seller_nick=特步平途专卖店&page=1&sort=";
$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_shop",
	                "api_params"=>array (
  'seller_nick' => '特步平途专卖店',
  'page' => '1',
  'sort' => '',
)
                )
            );
 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_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&seller_nick=特步平途专卖店&page=1&sort=";
		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_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&seller_nick=特步平途专卖店&page=1&sort=";
	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_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&seller_nick=特步平途专卖店&page=1&sort="
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_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&seller_nick=特步平途专卖店&page=1&sort=", 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_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({"seller_nick":"\u7279\u6b65\u5e73\u9014\u4e13\u5356\u5e97","page":"1","sort":""})// 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_shop",
     "api_params": {"seller_nick":"\u7279\u6b65\u5e73\u9014\u4e13\u5356\u5e97","page":"1","sort":""}//seller_nick=特步平途专卖店&page=1&sort=,#具体参数请参考文档说明
     },
     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_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&seller_nick=特步平途专卖店&page=1&sort=")
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_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&seller_nick=特步平途专卖店&page=1&sort=")!
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_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&seller_nick=特步平途专卖店&page=1&sort="];

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_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&seller_nick=特步平途专卖店&page=1&sort=";
  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_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&seller_nick=特步平途专卖店&page=1&sort=");
         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_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&seller_nick=特步平途专卖店&page=1&sort=", (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_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&seller_nick=特步平途专卖店&page=1&sort=")
    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_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&seller_nick=特步平途专卖店&page=1&sort=")?;
    let mut content = String::new();
    resp.read_to_string(&mut content)?;

    println!("{}", content);

    Ok(())
}

响应示例
{
	"items": {
	  "page": "1",
	  "nick": "特步平途专卖店",
	  "real_total_results": 19,
	  "total_results": 19,
	  "page_size": 19,
	  "pagecount": 1,
	  "_ddf": "fb",
	  "item": [
		{
		  "title": "特步男鞋运动鞋子夏季新款网面软底透气越野跑步鞋轻便减震耐磨休闲鞋 帆白/蜜柑橙 42",
		  "pic_url": "http://m.360buyimg.com/mobilecms/s357x458_jfs/t1/293703/10/3697/92829/681afb16Fc1fe7bf9/3d9f574b32ab2163.jpg!cc_357x458!q50.jpg",
		  "price": "149.00",
		  "sales": 0,
		  "num_iid": "10152498936497",
		  "seller": "特步平途专卖店",
		  "detail_url": "https://item.jd.com/10152498936497.html"
		},
		{
		  "title": "特步男鞋运动鞋子夏季新款网面软底透气越野跑步鞋轻便减震耐磨休闲鞋 帆白/落烟紫 42",
		  "pic_url": "http://m.360buyimg.com/mobilecms/s357x458_jfs/t1/297907/4/3930/78675/681afb54F1aa75ae3/4f3eb52e0856ba4e.jpg!cc_357x458!q50.jpg",
		  "price": "149.00",
		  "sales": 0,
		  "num_iid": "10152497752366",
		  "seller": "特步平途专卖店",
		  "detail_url": "https://item.jd.com/10152497752366.html"
		},
		{
		  "title": "特步男鞋运动鞋男子春夏季网面软底透气跑步鞋轻便减震健身跳绳休闲鞋 黑 39",
		  "pic_url": "http://m.360buyimg.com/mobilecms/s357x458_jfs/t1/133481/24/48577/79120/67015c1eF4aca241c/7902d18413a5bb73.jpg!cc_357x458!q50.jpg",
		  "price": "149.00",
		  "sales": 0,
		  "num_iid": "10117010697981",
		  "seller": "特步平途专卖店",
		  "detail_url": "https://item.jd.com/10117010697981.html"
		},
		{
		  "title": "特步男鞋运动鞋子夏季新款网面软底透气越野跑步鞋轻便减震耐磨休闲鞋 帆白/澈青蓝 【店长推荐】 42",
		  "pic_url": "http://m.360buyimg.com/mobilecms/s357x458_jfs/t1/303559/35/3880/142173/681d7692F95cd5485/3c8d7e8e88c3adc7.jpg!cc_357x458!q50.jpg",
		  "price": "149.00",
		  "sales": 0,
		  "num_iid": "10152496833885",
		  "seller": "特步平途专卖店",
		  "detail_url": "https://item.jd.com/10152496833885.html"
		},
		{
		  "title": "特步男鞋运动鞋子夏季新款网面软底透气越野跑步鞋轻便减震耐磨休闲鞋 帆白/黑 【店长推荐】 39",
		  "pic_url": "http://m.360buyimg.com/mobilecms/s357x458_jfs/t1/279550/40/29656/94151/6814d5e5Fe0ed0c2f/843ad7531a895627.jpg!cc_357x458!q50.jpg",
		  "price": "149.00",
		  "sales": 0,
		  "num_iid": "10152498211239",
		  "seller": "特步平途专卖店",
		  "detail_url": "https://item.jd.com/10152498211239.html"
		},
		{
		  "title": "特步男鞋运动鞋子春季减震旋科技回弹跑步鞋网面透气防滑耐磨训练跑鞋 黑/木炭灰 41",
		  "pic_url": "http://m.360buyimg.com/mobilecms/s357x458_jfs/t1/191893/35/50065/132478/671ca11eF6b44b373/30e03e32f88cc113.png!cc_357x458!q50.jpg",
		  "price": "219.00",
		  "sales": 0,
		  "num_iid": "10116930275422",
		  "seller": "特步平途专卖店",
		  "detail_url": "https://item.jd.com/10116930275422.html"
		},
		{
		  "title": "特步女鞋运动鞋子女春夏季软底舒适跑步鞋厚底耐磨防滑女士休闲鞋 粉棕褐/帆白 37",
		  "pic_url": "http://m.360buyimg.com/mobilecms/s357x458_jfs/t1/210099/20/45119/121255/6709d24bFca6e4cba/1abbc99f80dce006.png!cc_357x458!q50.jpg",
		  "price": "139.00",
		  "sales": 0,
		  "num_iid": "10119096784181",
		  "seller": "特步平途专卖店",
		  "detail_url": "https://item.jd.com/10119096784181.html"
		},
		{
		  "title": "特步女鞋运动鞋子女夏季新款网面透气跑步鞋轻便百搭软底舒适休闲鞋女 帆白/雪青紫/翻糖粉 35",
		  "pic_url": "http://m.360buyimg.com/mobilecms/s357x458_jfs/t1/280282/1/139/162730/67ceae6aFccc6f68b/551e26995ef29f70.jpg!cc_357x458!q50.jpg",
		  "price": "269.00",
		  "sales": 0,
		  "num_iid": "10153706385931",
		  "seller": "特步平途专卖店",
		  "detail_url": "https://item.jd.com/10153706385931.html"
		},
		{
		  "title": "特步男鞋运动鞋子男春季轻便减震回弹跑步鞋户外男士健身运动休闲鞋子 帆白/山岚绿/猫眼灰 40",
		  "pic_url": "http://m.360buyimg.com/mobilecms/s357x458_jfs/t1/58082/30/26439/96825/66dab41cF7336534d/dda8292eaeead729.jpg!cc_357x458!q50.jpg",
		  "price": "149.00",
		  "sales": 0,
		  "num_iid": "10128794766050",
		  "seller": "特步平途专卖店",
		  "detail_url": "https://item.jd.com/10128794766050.html"
		},
		{
		  "title": "特步男鞋运动鞋子男士春夏季革面防泼水跑步鞋轻便减震耐磨休闲鞋子男 木炭灰/烟灰色/黑 41",
		  "pic_url": "http://m.360buyimg.com/mobilecms/s357x458_jfs/t1/135655/14/48025/129880/671c6789F26a3f8dc/efa88090e4b1ea78.png!cc_357x458!q50.jpg",
		  "price": "159.00",
		  "sales": 0,
		  "num_iid": "10117011451651",
		  "seller": "特步平途专卖店",
		  "detail_url": "https://item.jd.com/10117011451651.html"
		},
		{
		  "title": "特步男鞋运动鞋子男夏季新款网面透气跑步鞋轻便减震耐磨防滑休闲跑鞋 帆白/澈青蓝 41",
		  "pic_url": "http://m.360buyimg.com/mobilecms/s357x458_jfs/t1/283714/14/2513/65061/67d3e1a3F7979114b/40864ce5108be971.jpg!cc_357x458!q50.jpg",
		  "price": "149.00",
		  "sales": 0,
		  "num_iid": "10067935481324",
		  "seller": "特步平途专卖店",
		  "detail_url": "https://item.jd.com/10067935481324.html"
		},
		{
		  "title": "特步男鞋运动鞋子男春季网面软底透气越野跑步鞋减震耐磨防滑休闲鞋子 黑 42",
		  "pic_url": "http://m.360buyimg.com/mobilecms/s357x458_jfs/t1/199548/22/51308/153942/674ed408F18ad5a3d/f3210c9a53481185.jpg!cc_357x458!q50.jpg",
		  "price": "159.00",
		  "sales": 0,
		  "num_iid": "10117011628220",
		  "seller": "特步平途专卖店",
		  "detail_url": "https://item.jd.com/10117011628220.html"
		},
		{
		  "title": "特步男鞋运动鞋子男氢风科技软底透气跑步鞋户外减震耐磨运动休闲鞋子 白色 40",
		  "pic_url": "http://m.360buyimg.com/mobilecms/s357x458_jfs/t1/101276/18/53071/98655/6710a57dF94755213/1c2c22a8cce9ee90.jpg!cc_357x458!q50.jpg",
		  "price": "139.00",
		  "sales": 0,
		  "num_iid": "10117011506451",
		  "seller": "特步平途专卖店",
		  "detail_url": "https://item.jd.com/10117011506451.html"
		},
		{
		  "title": "特步(XTEP)运动板鞋子男鞋软底舒适滑板鞋韩版潮流低帮板鞋休闲鞋百搭旅游鞋 帆白/鸽子灰 41",
		  "pic_url": "http://m.360buyimg.com/mobilecms/s357x458_jfs/t1/177902/14/49708/92313/67132eb5F2718be1d/cdc760676b87def1.jpg!cc_357x458!q50.jpg",
		  "price": "139.00",
		  "sales": 0,
		  "num_iid": "10095420280294",
		  "seller": "特步平途专卖店",
		  "detail_url": "https://item.jd.com/10095420280294.html"
		},
		{
		  "title": "特步女鞋运动鞋子女夏季轻便减震软底网面跑步鞋ins风潮流百搭休闲鞋 白藤紫/帆白 35",
		  "pic_url": "http://m.360buyimg.com/mobilecms/s357x458_jfs/t1/249305/33/23060/140149/672b45c1F8652ff4c/89a48f7bd8204554.jpg!cc_357x458!q50.jpg",
		  "price": "139.00",
		  "sales": 0,
		  "num_iid": "10117010211166",
		  "seller": "特步平途专卖店",
		  "detail_url": "https://item.jd.com/10117010211166.html"
		},
		{
		  "title": "特步女鞋运动鞋子女夏季新款网面透气老爹鞋轻便百搭休闲鞋子跑步鞋女 帆白/纯净粉/白沙灰 35",
		  "pic_url": "http://m.360buyimg.com/mobilecms/s357x458_jfs/t1/270367/8/27859/104027/680a5417Ffb24d4a2/a850bbb9a4640284.jpg!cc_357x458!q50.jpg",
		  "price": "149.00",
		  "sales": 0,
		  "num_iid": "10151015657188",
		  "seller": "特步平途专卖店",
		  "detail_url": "https://item.jd.com/10151015657188.html"
		},
		{
		  "title": "特步男鞋休闲鞋子男夏季网面软底透气运动鞋老爹鞋户外轻便百搭跑步鞋 帆白/泡沫蓝 39",
		  "pic_url": "http://m.360buyimg.com/mobilecms/s357x458_jfs/t1/267020/28/28867/128421/67c93c29F85c01c43/dffde33429f0ad55.jpg!cc_357x458!q50.jpg",
		  "price": "149.00",
		  "sales": 0,
		  "num_iid": "10140346789937",
		  "seller": "特步平途专卖店",
		  "detail_url": "https://item.jd.com/10140346789937.html"
		},
		{
		  "title": "特步女鞋运动鞋子女春夏季网面透气跑步鞋轻便减震耐磨百搭休闲鞋子女 帆白/雪雾绿/浅粉色 37",
		  "pic_url": "http://m.360buyimg.com/mobilecms/s357x458_jfs/t1/256482/40/17582/107512/67a06ec9Fd21d6c41/f478e1f206cd8bd5.jpg!cc_357x458!q50.jpg",
		  "price": "149.00",
		  "sales": 0,
		  "num_iid": "10136624462994",
		  "seller": "特步平途专卖店",
		  "detail_url": "https://item.jd.com/10136624462994.html"
		},
		{
		  "title": "特步男鞋运动鞋子男士春季春季新款网面透气跑步鞋减震耐磨防滑休闲鞋 黑 39",
		  "pic_url": "http://m.360buyimg.com/mobilecms/s357x458_jfs/t1/258828/17/9447/187633/677d2d6dF5beb7e97/b359f3770383e6c6.jpg!cc_357x458!q50.jpg",
		  "price": "149.00",
		  "sales": 0,
		  "num_iid": "10134712904886",
		  "seller": "特步平途专卖店",
		  "detail_url": "https://item.jd.com/10134712904886.html"
		}
	  ]
	},
	"error_code": "0000",
	"reason": "ok",
	"secache": "1bc1d13e881d904c78826745789cc1f2",
	"secache_time": 1747101102,
	"secache_date": "2025-05-13 09:51:42",
	"translate_status": "",
	"translate_time": 0,
	"language": {
	  "default_lang": "cn",
	  "current_lang": "cn"
	},
	"error": "",
	"cache": 0,
	"api_info": "today:23 max:10000 all[251=23+16+212];expires:2030-10-30",
	"execution_time": "1.87",
	"server_time": "Beijing/2025-05-13 09:51:42",
	"client_ip": "111.76.154.190",
	"call_args": {
	  "seller_nick": "特步平途专卖店"
	},
	"api_type": "jd",
	"translate_language": "zh-CN",
	"translate_engine": "google_new",
	"server_memory": "3.33MB",
	"request_id": "3.6822a5ad02ca0",
	"last_id": "4381359681"
  }
异常示例
{
  "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-05-13 9: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(微信同号)