万邦京东按关键字搜索商品 API 返回值说明

item_search_pro-按关键字搜索商品 [查看演示] API测试工具 注册开通

onebound.jd.item_search_pro

公共参数

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

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

请求参数:q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter=

参数说明:q:搜索关键字
page:

响应参数

Version: Date:

名称 类型 必须 示例值 描述
items
items[] 0 搜索相似的商品
请求示例
	
-- 请求示例 url 默认请求参数已经URL编码处理
curl -i "https://api-gw.onebound.cn/jd/item_search_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter="
<?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_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter=";
$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_pro",
	                "api_params"=>array (
  'q' => '女装',
  'start_price' => '0',
  'end_price' => '0',
  'page' => '1',
  'cat' => '0',
  'discount_only' => '',
  'sort' => '',
  'seller_info' => '',
  'nick' => '',
  'ppath' => '',
  'imgid' => '',
  'filter' => '',
)
                )
            );
 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_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter=";
		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_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter=";
	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_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter="
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_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter=", 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_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({"q":"\u5973\u88c5","start_price":"0","end_price":"0","page":"1","cat":"0","discount_only":"","sort":"","seller_info":"","nick":"","ppath":"","imgid":"","filter":""})// 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_pro",
     "api_params": {"q":"\u5973\u88c5","start_price":"0","end_price":"0","page":"1","cat":"0","discount_only":"","sort":"","seller_info":"","nick":"","ppath":"","imgid":"","filter":""}//q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter=,#具体参数请参考文档说明
     },
     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_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter=")
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_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter=")!
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_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter="];

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_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter=";
  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_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter=");
         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_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter=", (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_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter=")
    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_pro/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter=")?;
    let mut content = String::new();
    resp.read_to_string(&mut content)?;

    println!("{}", content);

    Ok(())
}

响应示例
{
    "items": {
        "page": "1",
        "url": "https://search.jd.com/Search?keyword=%E5%A5%B3%E8%A3%85",
        "keyword": "女装",
        "real_total_results": "6470",
        "total_results": "6470",
        "page_size": 36,
        "pagecount": "216",
        "_ddf": "fqx",
        "item": [
            {
                "title": "朗姿【王楚然同款穿搭】朗姿羊毛高端外套仿皮草大衣2025年冬季新款 米白色大衣 M",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/375506/27/11047/68015/693dd2a2F14f74970/065c320320e4ef3e.jpg",
                "price": "3780",
                "sales": 46,
                "num_iid": "10179896954072",
                "seller": "朗姿官方旗舰店",
                "shop_id": "10493212",
                "detail_url": "https://item.jd.com/10179896954072.html",
                "reviews": 10
            },
            {
                "title": "鹅绒女士泡芙加厚立领",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/379719/26/14662/68728/694fd4f9F98d2870b/e21b5a84f76fc9df.jpg",
                "price": "1999.00",
                "sales": 10000,
                "num_iid": "100208922071",
                "seller": "波司登京东自营旗舰店",
                "shop_id": "1000384206",
                "detail_url": "https://item.jd.com/100208922071.html",
                "reviews": 5000
            },
            {
                "title": "波司登女短款泡芙连帽羽绒服",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/383792/7/9577/71821/694ffff6F3a6347d5/2227dc22cdc76709.jpg",
                "price": "1999.00",
                "sales": 10000,
                "num_iid": "10181391663972",
                "seller": "波司登官方旗舰店",
                "shop_id": "44892",
                "detail_url": "https://item.jd.com/10181391663972.html",
                "reviews": 5000
            },
            {
                "title": "优衣库女装无缝羽绒短茄克/老爸评测外套夹克25秋冬478578 07 青灰色 M /160/84A",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/377464/7/11355/129476/6943d9d5Fe66a32e9/7f760c1c3c3863ec.jpg",
                "price": "599.00",
                "sales": 40000,
                "num_iid": "10177936248306",
                "seller": "优衣库UNIQLO",
                "shop_id": "18321579",
                "detail_url": "https://item.jd.com/10177936248306.html",
                "reviews": 20000
            },
            {
                "title": "优衣库女装羽绒茄克/柔软面料外套夹克479212 01 乳白色 M",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/376439/20/15489/46406/6943b354F07328b3f/e9d02e5855b82219.jpg",
                "price": "499.00",
                "sales": 50000,
                "num_iid": "10177936351103",
                "seller": "优衣库UNIQLO",
                "shop_id": "18321579",
                "detail_url": "https://item.jd.com/10177936351103.html",
                "reviews": 20000
            },
            {
                "title": "LIME【明星同款】朗姿/莱茵千金风轻奢羊毛花呢手工胸花高腰半裙套装 棕色上衣 M",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/377812/3/3325/2243044/69349bf5F1410df0c/0bba49d0d203fc07.png",
                "price": "1418.18",
                "sales": 67,
                "num_iid": "10193269745896",
                "seller": "LIME莱茵官方旗舰店",
                "shop_id": "13506717",
                "detail_url": "https://item.jd.com/10193269745896.html",
                "reviews": 37
            },
            {
                "title": "波司登25新款女士短款羽绒服",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/373922/11/23300/68518/695000abF8cebef78/854806d1fcbdcdcb.jpg",
                "price": "999.00",
                "sales": 50000,
                "num_iid": "10154468441332",
                "seller": "波司登官方旗舰店",
                "shop_id": "44892",
                "detail_url": "https://item.jd.com/10154468441332.html",
                "reviews": 50000
            },
            {
                "title": "高梵新款五格羽绒服先锋冬季",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/378913/1/13009/82286/694f4250Fef47826c/7b9f944c80ac8be3.jpg",
                "price": "2299.00",
                "sales": 6000,
                "num_iid": "100139926488",
                "seller": "高梵京东自营旗舰店",
                "shop_id": "1000072803",
                "detail_url": "https://item.jd.com/100139926488.html",
                "reviews": 2000
            },
            {
                "title": "新国标90绒女连帽短款",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/376611/18/23787/68176/694fd4eeFf19506c7/9a2777693fed53db.jpg",
                "price": "999.00",
                "sales": 20000,
                "num_iid": "100173136913",
                "seller": "波司登京东自营旗舰店",
                "shop_id": "1000384206",
                "detail_url": "https://item.jd.com/100173136913.html",
                "reviews": 10000
            },
            {
                "title": "高梵五格羽绒服机能男女同款",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/376314/5/22483/80934/694f4251F19b17d65/59ff0a232fb0347a.jpg",
                "price": "2099.00",
                "sales": 6000,
                "num_iid": "100117996727",
                "seller": "高梵京东自营旗舰店",
                "shop_id": "1000072803",
                "detail_url": "https://item.jd.com/100117996727.html",
                "reviews": 2000
            },
            {
                "title": "MAX MARA 女装Manuela骆驼绒经典系带大衣1016141906 驼色 36",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/260256/21/30431/27985/67cc9911F311d1b2b/56de580764696e1f.jpg",
                "price": "25500",
                "sales": 100,
                "num_iid": "10056356943433",
                "seller": "MaxMara官方旗舰店",
                "shop_id": "12131564",
                "detail_url": "https://item.jd.com/10056356943433.html",
                "reviews": 100
            },
            {
                "title": "新款中长款女羽绒服",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/380258/10/13863/63582/694fd4efF686a00f9/58c3496a8e02c3f2.jpg",
                "price": "1499.00",
                "sales": 20000,
                "num_iid": "100224038934",
                "seller": "波司登京东自营旗舰店",
                "shop_id": "1000384206",
                "detail_url": "https://item.jd.com/100224038934.html",
                "reviews": 10000
            },
            {
                "title": "羽绒服女士泡芙加厚连帽",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/378453/15/18621/82912/6953a7eeF1784cab9/a9de125485a7cafd.jpg",
                "price": "1999.00",
                "sales": 4000,
                "num_iid": "100277896324",
                "seller": "波司登京东自营旗舰店",
                "shop_id": "1000384206",
                "detail_url": "https://item.jd.com/100277896324.html",
                "reviews": 1000
            },
            {
                "title": "优衣库女装无缝羽绒连帽外套/外套夹克478577 01 乳白色 M /160/84A",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/376173/24/8687/51816/693a34fcFe776ffa9/4c08d6ee37195f36.jpg",
                "price": "499.00",
                "sales": 30000,
                "num_iid": "10177936836339",
                "seller": "优衣库UNIQLO",
                "shop_id": "18321579",
                "detail_url": "https://item.jd.com/10177936836339.html",
                "reviews": 20000
            },
            {
                "title": "女士短款90鹅绒收腰显瘦羽绒服",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/383364/22/7879/73501/694fd4fbF2d84f7d3/02a46d9b08db8d02.jpg",
                "price": "1999.00",
                "sales": 2000,
                "num_iid": "100277895658",
                "seller": "波司登京东自营旗舰店",
                "shop_id": "1000384206",
                "detail_url": "https://item.jd.com/100277895658.html",
                "reviews": 500
            },
            {
                "title": "经典极寒厚连帽明绗短款羽绒服",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/383450/4/8887/82188/694fd55bFf58e779e/17a7dbc097875891.jpg",
                "price": "1999.00",
                "sales": 4000,
                "num_iid": "100211869867",
                "seller": "波司登京东自营旗舰店",
                "shop_id": "1000384206",
                "detail_url": "https://item.jd.com/100211869867.html",
                "reviews": 2000
            },
            {
                "title": "高梵黑金鹅绒服抱抱5.0六格长款2025新款女士加厚泡芙羽绒服 黑色 S",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/377363/38/23572/45626/694f426bF08b5a2c1/c9cdf53f76d56bd3.jpg",
                "price": "2999.00",
                "sales": 2000,
                "num_iid": "100272999326",
                "seller": "高梵京东自营旗舰店",
                "shop_id": "1000072803",
                "detail_url": "https://item.jd.com/100272999326.html",
                "reviews": 500
            },
            {
                "title": "高梵黑金鹅绒服机能5.0四格2025新款短款泡芙加厚女士羽绒服 鎏金1号S",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/383361/11/8807/69891/694f4266F0c2255ab/abe61e9ffe5b7a46.jpg",
                "price": "2199.00",
                "sales": 2000,
                "num_iid": "100280408332",
                "seller": "高梵京东自营旗舰店",
                "shop_id": "1000072803",
                "detail_url": "https://item.jd.com/100280408332.html",
                "reviews": 1000
            },
            {
                "title": "波司登女短款鹅绒极寒连帽外套",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/372933/38/21017/92122/694ffff6Ff133f8e6/0658cb337527fc74.jpg",
                "price": "1999.00",
                "sales": 4000,
                "num_iid": "10180313159729",
                "seller": "波司登官方旗舰店",
                "shop_id": "44892",
                "detail_url": "https://item.jd.com/10180313159729.html",
                "reviews": 2000
            },
            {
                "title": "女士长款羽绒服90鹅绒",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/378642/36/14103/82608/694fd501Faa9439e9/1d0dbd409f7a190e.jpg",
                "price": "2099.00",
                "sales": 2000,
                "num_iid": "100271001138",
                "seller": "波司登京东自营旗舰店",
                "shop_id": "1000384206",
                "detail_url": "https://item.jd.com/100271001138.html",
                "reviews": 1000
            },
            {
                "title": "波司登长款连帽羽绒服外套",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/377558/11/22237/65191/694fd4e2F526cf442/79807c68c34ff3c9.jpg",
                "price": "2599.00",
                "sales": 3000,
                "num_iid": "100141135592",
                "seller": "波司登京东自营旗舰店",
                "shop_id": "1000384206",
                "detail_url": "https://item.jd.com/100141135592.html",
                "reviews": 1000
            },
            {
                "title": "优衣库女装高级保暖羽绒长大衣/老爸评测外套夹克25秋冬481014 09 黑色 M /160/84A",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/375240/13/9937/55735/69393329F02097c96/429ca44a5bad7d3d.jpg",
                "price": "999.00",
                "sales": 10000,
                "num_iid": "10177936551970",
                "seller": "优衣库UNIQLO",
                "shop_id": "18321579",
                "detail_url": "https://item.jd.com/10177936551970.html",
                "reviews": 10000
            },
            {
                "title": "波司登泡芙中性羽绒服",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/380447/21/11683/67372/694ffff9Fec007b27/37f50082c20af525.jpg",
                "price": "1999.00",
                "sales": 3000,
                "num_iid": "10181709659926",
                "seller": "波司登官方旗舰店",
                "shop_id": "44892",
                "detail_url": "https://item.jd.com/10181709659926.html",
                "reviews": 1000
            },
            {
                "title": "时尚泡芙厚羽羽绒服",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/376384/8/23273/85298/694fd4f9Fe6b2c5b6/bedc2368bbeacd41.jpg",
                "price": "2599.00",
                "sales": 2000,
                "num_iid": "100277896230",
                "seller": "波司登京东自营旗舰店",
                "shop_id": "1000384206",
                "detail_url": "https://item.jd.com/100277896230.html",
                "reviews": 1000
            },
            {
                "title": "时尚百搭保暖外套",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/375588/35/23606/64855/694fd4e6F27633a58/f35f06d3ead74da3.jpg",
                "price": "1999.00",
                "sales": 10000,
                "num_iid": "100118750365",
                "seller": "波司登京东自营旗舰店",
                "shop_id": "1000384206",
                "detail_url": "https://item.jd.com/100118750365.html",
                "reviews": 5000
            },
            {
                "title": "新款90鹅绒短款极寒风衣宽松",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/381162/19/10361/76328/694ffff6Ff7bcc555/3fe02a817e486c01.jpg",
                "price": "2999.00",
                "sales": 1000,
                "num_iid": "10187639367269",
                "seller": "波司登官方旗舰店",
                "shop_id": "44892",
                "detail_url": "https://item.jd.com/10187639367269.html",
                "reviews": 500
            },
            {
                "title": "极寒宽松短款连帽毛领风衣羽绒服",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/376087/6/22570/72858/694fd4fdF9cf22b4d/1f2a5fb554421e1c.jpg",
                "price": "2999.00",
                "sales": 1000,
                "num_iid": "100285297992",
                "seller": "波司登京东自营旗舰店",
                "shop_id": "1000384206",
                "detail_url": "https://item.jd.com/100285297992.html",
                "reviews": 500
            },
            {
                "title": "波司登羽绒服短款连帽",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/379951/11/14270/64077/694fd516Fcbc7cc44/5feb78731b836a5c.jpg",
                "price": "1699.00",
                "sales": 2000,
                "num_iid": "100285251766",
                "seller": "波司登京东自营旗舰店",
                "shop_id": "1000384206",
                "detail_url": "https://item.jd.com/100285251766.html",
                "reviews": 1000
            },
            {
                "title": "伊芙丽驼绒高级双面外套",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/379749/32/4021/71249/693f6647Fd6ae2748/383dee49e5b3e4b9.jpg",
                "price": "1699.00",
                "sales": 10000,
                "num_iid": "10113755933928",
                "seller": "伊芙丽官方旗舰店",
                "shop_id": "10422158",
                "detail_url": "https://item.jd.com/10113755933928.html",
                "reviews": 5000
            },
            {
                "title": "高梵风壳五分奢华新款羽绒服",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/379048/18/14209/88304/694f425cFfe21e3cf/ea28bf18ce21c86c.jpg",
                "price": "2499.00",
                "sales": 5000,
                "num_iid": "100132714836",
                "seller": "高梵京东自营旗舰店",
                "shop_id": "1000072803",
                "detail_url": "https://item.jd.com/100132714836.html",
                "reviews": 2000
            },
            {
                "title": "羽绒服女短款脱卸帽保暖新款",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/375444/33/21545/62318/694cd9b6Fddfdefef/3ca7982d7c1cdaa2.jpg",
                "price": "1119.00",
                "sales": 10000,
                "num_iid": "100209052795",
                "seller": "坦博尔京东自营旗舰店",
                "shop_id": "1000211312",
                "detail_url": "https://item.jd.com/100209052795.html",
                "reviews": 5000
            },
            {
                "title": "坦博尔女时尚可脱卸帽保暖羽绒服",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/379686/10/12899/85123/694cd53cF3a6eef5b/cdf185a6aad78d90.jpg",
                "price": "1749.00",
                "sales": 10000,
                "num_iid": "100138240580",
                "seller": "坦博尔京东自营旗舰店",
                "shop_id": "1000211312",
                "detail_url": "https://item.jd.com/100138240580.html",
                "reviews": 5000
            },
            {
                "title": "高梵黑金鹅绒服先锋5.0四格2025新款小个子通勤女士羽绒服 铂金7号 S",
                "pic_url": "https://img12.360buyimg.com/n2/s345x345_jfs/t1/374840/31/23511/55113/694f4266F967d58ba/3d968d9c5b4e2193.jpg",
                "price": "2199.00",
                "sales": 3000,
                "num_iid": "100286400198",
                "seller": "高梵京东自营旗舰店",
                "shop_id": "1000072803",
                "detail_url": "https://item.jd.com/100286400198.html",
                "reviews": 1000
            }
        ]
    },
    "error_code": "0000",
    "reason": "ok",
    "secache": "d35c939c714c0f8dc67429368486bb86",
    "secache_time": 1767150495,
    "secache_date": "2025-12-31 11:08:15",
    "translate_status": "",
    "translate_time": 0,
    "language": {
        "default_lang": "cn",
        "current_lang": "cn"
    },
    "error": "",
    "cache": 0,
    "api_info": "today:14 max:10000 all[286=14+11+261];expires:2030-10-30",
    "execution_time": "2.503",
    "server_time": "Beijing/2025-12-31 11:08:15",
    "client_ip": "182.103.244.99",
    "call_args": {
        "q": "女装",
        "start_price": "0",
        "end_price": "0",
        "page": "1",
        "cat": "0"
    },
    "api_type": "jd",
    "translate_language": "zh-CN",
    "translate_engine": "baidu",
    "server_memory": "3.65MB",
    "request_id": "1.6954939d1c406",
    "last_id": "delay"
}
异常示例
相关资料
错误码解释
状态代码(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(微信同号)