万邦京东获得店铺的所有商品 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版本
请求参数

请求参数:shop_id=1000001389&page=1&sortType=5&direction=1

参数说明:shop_id:店铺ID
page:页数
sort:排序[price,new,sale] (不传默认为销量降序,price:价格,sale:销量降序,new:新品)
direction:0升序 1降序

响应参数

Version: Date:

名称 类型 必须 示例值 描述
items
items[] 0 获取店铺商品
请求示例
	
-- 请求示例 url 默认请求参数已经URL编码处理
curl -i "https://api-gw.onebound.cn/jd/item_search_shop/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&shop_id=1000001389&page=1&sortType=5&direction=1"
<?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>&shop_id=1000001389&page=1&sortType=5&direction=1";
$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 (
  'shop_id' => '1000001389',
  'page' => '1',
  'sortType' => '5',
  'direction' => '1',
)
                )
            );
 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>&shop_id=1000001389&page=1&sortType=5&direction=1";
		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>&shop_id=1000001389&page=1&sortType=5&direction=1";
	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>&shop_id=1000001389&page=1&sortType=5&direction=1"
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>&shop_id=1000001389&page=1&sortType=5&direction=1", 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({"shop_id":"1000001389","page":"1","sortType":"5","direction":"1"})// 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": {"shop_id":"1000001389","page":"1","sortType":"5","direction":"1"}//shop_id=1000001389&page=1&sortType=5&direction=1,#具体参数请参考文档说明
     },
     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>&shop_id=1000001389&page=1&sortType=5&direction=1")
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>&shop_id=1000001389&page=1&sortType=5&direction=1")!
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>&shop_id=1000001389&page=1&sortType=5&direction=1"];

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>&shop_id=1000001389&page=1&sortType=5&direction=1";
  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>&shop_id=1000001389&page=1&sortType=5&direction=1");
         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>&shop_id=1000001389&page=1&sortType=5&direction=1", (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>&shop_id=1000001389&page=1&sortType=5&direction=1")
    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>&shop_id=1000001389&page=1&sortType=5&direction=1")?;
    let mut content = String::new();
    resp.read_to_string(&mut content)?;

    println!("{}", content);

    Ok(())
}

响应示例
{
  "items": {
    "page": "1",
    "real_total_results": "38",
    "total_results": "38",
    "page_size": 20,
    "pagecount": 2,
    "_ddf": "fqx",
    "item": [
      {
        "num_iid": "100099423261",
        "detail_url": "https://item.jd.com/100099423261.html?pcdk=r9ebmwuICph1eIpDevP6cGtZYU1yVCUfAlvdL4tlr5s=.M8AW.sbc1",
        "title": "安吉尔家用净水器玉龙Pro1200G反渗透厨下直饮净水机自来水过滤净饮机J3673-ROC150型",
        "pic_url": "https://img14.360buyimg.com/n7/jfs/t1/504162/35/3762/169735/6a7ffe17F06b96ab0/0083320320882cd4.jpg",
        "shop_id": "1000001389",
        "sales": 0
      },
      {
        "num_iid": "100113120455",
        "detail_url": "https://item.jd.com/100113120455.html?pcdk=XtrIHG3_mmjHuIi5cJgKtxjj45NTVEEttcVSfQHd5U4=.M8AW.sbc1",
        "title": "安吉尔CF复合滤芯 适用于玉龙Pro 1200G/玉龙Pro 1000G/玉龙Pro 1000GSE净水器 LX-3622US-PPC180",
        "pic_url": "https://img12.360buyimg.com/n7/jfs/t1/293248/1/10239/135406/6889c74eF86cf057d/b675b080562453f3.jpg",
        "shop_id": "1000001389",
        "sales": 0
      },
      {
        "num_iid": "100014689954",
        "detail_url": "https://item.jd.com/100014689954.html?pcdk=r9ebmwuICph1eIpDevP6cBWXkicbH8W6kX2fz6jSMXs=.M8AW.sbc1",
        "title": "安吉尔饮水机家用饮水烧水一体机上置桶装水抽水器即热式直饮水机烧水壶Y1351LK-C",
        "pic_url": "https://img12.360buyimg.com/n7/jfs/t1/499978/28/7883/129136/6a7f9580F5b8f507d/008332032013e7c0.jpg",
        "shop_id": "1000001389",
        "sales": 0
      },
      {
        "num_iid": "100339422700",
        "detail_url": "https://item.jd.com/100339422700.html?pcdk=di75eGaqrji269mUJHyrJnC9Ku4R-kB7IcTbyQSt-bY=.M8AW.sbc1",
        "title": "安吉尔哪吒高速全厨净水器1400G家用净水器8年长效RO膜反渗透厨下式净水机J3780-ROC186",
        "pic_url": "https://img10.360buyimg.com/n7/jfs/t1/497373/20/12103/161676/6a7ffcf6F26013770/0083320320b1042d.jpg",
        "shop_id": "1000001389",
        "sales": 0
      },
      {
        "num_iid": "100253649425",
        "detail_url": "https://item.jd.com/100253649425.html?pcdk=iq_pg9RInIpqp11HLGhg8knOCW3bxAWakRBXtQV0p6Y=.M8AW.sbc1",
        "title": "安吉尔哪吒2026年新款茶吧机母婴适用高端客厅家用饮水机智能防溢下置式桶装水CB3785LK-Ja",
        "pic_url": "https://img14.360buyimg.com/n7/jfs/t1/500360/23/8154/142737/6a7f9589Fcdae6a30/0083320320176341.jpg",
        "shop_id": "1000001389",
        "sales": 0
      },
      {
        "num_iid": "100109761862",
        "detail_url": "https://item.jd.com/100109761862.html?pcdk=XtrIHG3_mmjHuIi5cJgKt9B11RZT3d0dow7u8lzRi2U=.M8AW.sbc1",
        "title": "安吉尔陶瓷水龙头净水器净化家用自来水过滤器除异味异色净水机 一机三芯套装 LT3672-CF30",
        "pic_url": "https://img11.360buyimg.com/n7/jfs/t1/490323/37/12734/153789/6a7ffdb7F3694cda8/0083320320157a7f.jpg",
        "shop_id": "1000001389",
        "sales": 0
      },
      {
        "num_iid": "100274572918",
        "detail_url": "https://item.jd.com/100274572918.html?pcdk=iq_pg9RInIpqp11HLGhg8hJLV2G8m6oJ09rFWwAgn7k=.M8AW.sbc1",
        "title": "安吉尔家用茶吧机高端客厅智能语音防溢饮水机恒温养生煮烧水壶一体2026年新款CB3783LK-J",
        "pic_url": "https://img10.360buyimg.com/n7/jfs/t1/504555/24/2991/140005/6a7f958aF8bf0cdec/0083320320687f5a.jpg",
        "shop_id": "1000001389",
        "sales": 0
      },
      {
        "num_iid": "100297166386",
        "detail_url": "https://item.jd.com/100297166386.html?pcdk=iq_pg9RInIpqp11HLGhg8kXB6ODRZC5TLPdACBtIvrM=.M8AW.sbc1",
        "title": "安吉尔魔方2代Pro2200家用净水器厨房专用净水机直饮一体机超薄除菌RO反渗透净水器2.2L/min",
        "pic_url": "https://img12.360buyimg.com/n7/jfs/t1/494723/33/14894/119112/6a81925aF92a98230/0083320320ee27fa.jpg",
        "shop_id": "1000001389",
        "sales": 0
      },
      {
        "num_iid": "100044988423",
        "detail_url": "https://item.jd.com/100044988423.html?pcdk=r9ebmwuICph1eIpDevP6cP1AW_jgne7Lol7kpS9fyew=.M8AW.sbc1",
        "title": "安吉尔CFⅡ复合滤芯 适用于魔方pro2900/2500哪吒500G/600G/700G哪吒Pro2900等机型 LX-944US-PSC180",
        "pic_url": "https://img11.360buyimg.com/n7/jfs/t1/310752/26/19737/138450/6889c7a6F20ab014a/6dd3e1c25f9929a3.jpg",
        "shop_id": "1000001389",
        "sales": 0
      },
      {
        "num_iid": "100065180356",
        "detail_url": "https://item.jd.com/100065180356.html?pcdk=r9ebmwuICph1eIpDevP6cNKNGHJQhspJonMAiykzvt8=.M8AW.sbc1",
        "title": "安吉尔前置过滤器家用半自动反冲洗40微米净滤防爆自来水15T大通量全屋家用净水器J3526",
        "pic_url": "https://img14.360buyimg.com/n7/jfs/t1/500093/5/9028/224266/6a7ffebcF00cf0e45/0083320320483b5f.jpg",
        "shop_id": "1000001389",
        "sales": 0
      },
      {
        "num_iid": "100099445843",
        "detail_url": "https://item.jd.com/100099445843.html?pcdk=r9ebmwuICph1eIpDevP6cCNapKl20dKQoBkqsDwidmk=.M8AW.sbc1",
        "title": "安吉尔净水器滤芯NAC后置活性炭滤芯 适用于净饮一体机T3台式净水器JY3491TK-ROK等机型 LX-295GAC8",
        "pic_url": "https://img10.360buyimg.com/n7/jfs/t1/305098/25/22444/125449/6889c775F11fca4d1/3f7f791903ac112b.jpg",
        "shop_id": "1000001389",
        "sales": 0
      },
      {
        "num_iid": "100079202320",
        "detail_url": "https://item.jd.com/100079202320.html?pcdk=r9ebmwuICph1eIpDevP6cDdYT7Q1COf-m1rof_gHhSA=.M8AW.sbc1",
        "title": "安吉尔饮水机家用即热式下置桶装水抽水器直饮水烧水一体茶吧机烧水壶电器Y3552LK-C-N",
        "pic_url": "https://img13.360buyimg.com/n7/jfs/t1/490160/2/15353/130959/6a7f9584Fac8f9343/008332032072ceed.jpg",
        "shop_id": "1000001389",
        "sales": 0
      },
      {
        "num_iid": "100117608412",
        "detail_url": "https://item.jd.com/100117608412.html?pcdk=XtrIHG3_mmjHuIi5cJgKt60vN72KKAuBXqcDZY2-8rQ=.M8AW.sbc1",
        "title": "安吉尔陶瓷活性炭复合滤芯(无外壳) 适用于CF30陶瓷水龙头 LX-3619US-CFC30",
        "pic_url": "https://img12.360buyimg.com/n7/jfs/t1/302729/3/21280/133821/6889d2b3Fff0a9fee/78af72bcb7fb58ca.jpg",
        "shop_id": "1000001389",
        "sales": 0
      },
      {
        "num_iid": "100120769962",
        "detail_url": "https://item.jd.com/100120769962.html?pcdk=XtrIHG3_mmjHuIi5cJgKt0NCQtt5r6zAdUS5g0_GQ2Q=.M8AW.sbc1",
        "title": "安吉尔水龙头净水器家用 厨房自来水过滤器 一机一芯超滤龙头净水机 LT3671-UF60",
        "pic_url": "https://img11.360buyimg.com/n7/jfs/t1/497507/7/9589/154950/6a7ffd9cF654a4b2b/0083320320e482aa.jpg",
        "shop_id": "1000001389",
        "sales": 0
      },
      {
        "num_iid": "100213113524",
        "detail_url": "https://item.jd.com/100213113524.html?pcdk=iq_pg9RInIpqp11HLGhg8irnzCyiGMii1LTWTTQYGgA=.M8AW.sbc1",
        "title": "安吉尔前置过滤器家用自动反冲洗防爆40微米双网精滤15T大通量全屋入户自来水净水器 J3622-GWG-7000",
        "pic_url": "https://img12.360buyimg.com/n7/jfs/t1/508288/3/757/137028/6a8192d8F2f24816b/008332032041865d.jpg",
        "shop_id": "1000001389",
        "sales": 0
      },
      {
        "num_iid": "100241705012",
        "detail_url": "https://item.jd.com/100241705012.html?pcdk=iq_pg9RInIpqp11HLGhg8iyHBwlDvOgPM_XSwY1-3aQ=.M8AW.sbc1",
        "title": "安吉尔玉龙Ultra真开水净水器1000G家用厨下式加热直饮机2000G温热水流速J3661-ROC126H 型",
        "pic_url": "https://img14.360buyimg.com/n7/jfs/t1/501602/8/5542/150802/6a7ffe31F07d46538/008332032053a152.jpg",
        "shop_id": "1000001389",
        "sales": 0
      },
      {
        "num_iid": "100190033353",
        "detail_url": "https://item.jd.com/100190033353.html?pcdk=XtrIHG3_mmjHuIi5cJgKt8_n0XoUoLAwoszM2HnHvaI=.M8AW.sbc1",
        "title": "安吉尔净水器CFⅡ复合滤芯 适用于魔方pro2900/2500哪吒500G/600G/700G哪吒Pro2900等机型",
        "pic_url": "https://img14.360buyimg.com/n7/jfs/t1/367691/38/5870/124910/69256006F43e29c6e/026ba3f9ace712e1.jpg",
        "shop_id": "1000001389",
        "sales": 0
      },
      {
        "num_iid": "100114383045",
        "detail_url": "https://item.jd.com/100114383045.html?pcdk=XtrIHG3_mmjHuIi5cJgKtzw2LIIHxP0-vdHb5sOWo34=.M8AW.sbc1",
        "title": "安吉尔管线机家用超薄壁挂式六档温控定量取水净饮机加热即热式直饮水一体机Y3611BK-G灰色",
        "pic_url": "https://img14.360buyimg.com/n7/jfs/t1/503329/2/4039/149640/6a7ffcc2F0d7efc20/0083320320ded4f3.jpg",
        "shop_id": "1000001389",
        "sales": 0
      },
      {
        "num_iid": "100258394568",
        "detail_url": "https://item.jd.com/100258394568.html?pcdk=iq_pg9RInIpqp11HLGhg8h8KETScqv8Cfo67Ka2dyUI=.M8AW.sbc1",
        "title": "安吉尔净水器CFⅢ复合滤芯 适用魔方Pro1900/E-tech鲜热一体/大鱼系列",
        "pic_url": "https://img14.360buyimg.com/n7/jfs/t1/372385/5/429/128801/6925601cF0694dddd/0785e7732150758c.jpg",
        "shop_id": "1000001389",
        "sales": 0
      },
      {
        "num_iid": "100155375165",
        "detail_url": "https://item.jd.com/100155375165.html?pcdk=XtrIHG3_mmjHuIi5cJgKtwK83Czhl9TYtTstDmPDl_s=.M8AW.sbc1",
        "title": "安吉尔台式净饮机T1家用净水器反渗透净热一体机免安装透触屏无双酚A直饮机家电JY3693-ROT8H",
        "pic_url": "https://img14.360buyimg.com/n7/jfs/t1/502309/23/6245/154715/6a7ffccfFe6bbe24f/0083320320fa9e38.jpg",
        "shop_id": "1000001389",
        "sales": 0
      }
    ]
  },
  "error_code": "0000",
  "reason": "ok",
  "secache": "1d9145f3b04086b11676d2d327190f00",
  "secache_time": 1786934451,
  "secache_date": "2026-08-17 10:40:51",
  "translate_status": "",
  "translate_time": 0,
  "language": {
    "default_lang": "cn",
    "current_lang": "cn"
  },
  "error": "",
  "cache": 0,
  "api_info": "today:34 max:10000 all[131=34+43+54];expires:2030-02-19",
  "execution_time": "2.561",
  "server_time": "Beijing/2026-08-17 10:40:51",
  "client_ip": "106.6.35.33",
  "call_args": {
    "seller_nick": "1000001389"
  },
  "api_type": "jd",
  "translate_language": "zh-CN",
  "translate_engine": "baidu",
  "server_memory": "0.83MB",
  "request_id": "gw-4.6a8274b08b4bf",
  "last_id": "delay"
}
异常示例
{
  "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(微信同号)