凡邦京东获得JD商品详情原数据 API 返回值说明

item_get_app-获得JD商品详情原数据 [查看演示] API测试工具 注册开通

onebound.jd.item_get_app

公共参数

请求地址: https://api-gw.fan-b.com/jd/item_get_app

名称 类型 必须 描述
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=10335871600&domain_type=jd

参数说明:item_id:商品ID
domain_type:站点名称(京东工业:gongye;京东医药:yiyao;全球购,国际:hk; 京东自营:jd)

响应参数

Version: Date:

名称 类型 必须 示例值 描述
items
item[] 0 获得京东app商品详情原数据
请求示例
	
-- 请求示例 url 默认请求参数已经URL编码处理
curl -i "https://api-gw.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd"
<?php

// 请求示例 url 默认请求参数已经URL编码处理
// 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.fan-b.com/help/demo/sdk/demo-sign.php
$method = "GET";
$url = "https://api-gw.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd";
$curl = curl_init();
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST,FALSE);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER,FALSE);
curl_setopt($curl, CURLOPT_FAILONERROR, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HEADER, true);
curl_setopt($curl, CURLOPT_ENCODING, "gzip");
var_dump(curl_exec($curl));
?>
<?php
//定义缓存目录和引入文件
define("DIR_RUNTIME","runtime/");
define("DIR_ERROR","runtime/");
define("SECACHE_SIZE","0");
//SDK下载地址 https://open.fan-b.com/help/demo/sdk/onebound-api-sdk.zip
include ("ObApiClient.php");

$obapi = new otao\ObApiClient();
$obapi->api_url = "http://api-gw.fan-b.com/";
$obapi->api_urls = array("http://api-gw.fan-b.com/","http://api-1.fan-b.com/");//备用API服务器
$obapi->api_urls_on = true;//当网络错误时,是否启用备用API服务器
$obapi->api_key = "<您自己的apiKey>";
$obapi->api_secret = "<您自己的apiSecret>";
$obapi->api_version ="";
$obapi->secache_path ="runtime/";
$obapi->secache_time ="86400";
$obapi->cache = true;

$api_data = $obapi->exec(
                array(
	                "api_type" =>"jd",
	                "api_name" =>"item_get_app",
	                "api_params"=>array (
  'num_iid' => '10335871600',
  'domain_type' => 'jd',
)
                )
            );
 var_dump($api_data);
?>
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.net.URL;
import java.nio.charset.Charset;
import org.json.JSONException;
import org.json.JSONObject;
import java.io.PrintWriter;
import java.net.URLConnection;

public class Example {
	private static String readAll(Reader rd) throws IOException {
		StringBuilder sb = new StringBuilder();
		int cp;
		while ((cp = rd.read()) != -1) {
			sb.append((char) cp);
		}
		return  sb.toString();
	}
	public static JSONObject postRequestFromUrl(String url, String body) throws IOException, JSONException {
		URL realUrl = new URL(url);
		URLConnection conn = realUrl.openConnection();
		conn.setDoOutput(true);
		conn.setDoInput(true);
		PrintWriter out = new PrintWriter(conn.getOutputStream());
		out.print(body);
		out.flush();
		InputStream instream = conn.getInputStream();
		try {
			BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
			String jsonText = readAll(rd);
			JSONObject json = new JSONObject(jsonText);
			return json;
		} finally {
			instream.close();
		}
	}
	public static JSONObject getRequestFromUrl(String url) throws IOException, JSONException {
		URL realUrl = new URL(url);
		URLConnection conn = realUrl.openConnection();
		InputStream instream = conn.getInputStream();
		try {
			BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8")));
			String jsonText = readAll(rd);
			JSONObject json = new JSONObject(jsonText);
			return json;
		} finally {
			instream.close();
		}
	}
	public static void main(String[] args) throws IOException, JSONException {
		// 请求示例 url 默认请求参数已经URL编码处理
		String url = "https://api-gw.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd";
		JSONObject json = getRequestFromUrl(url);
		System.out.println(json.toString());
	}

}
//using System.Net.Security;
//using System.Security.Cryptography.X509Certificates;
private const String method = "GET";
static void Main(string[] args)
{
	String bodys = "";
	// 请求示例 url 默认请求参数已经做URL编码
	String url = "https://api-gw.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd";
	HttpWebRequest httpRequest = null;
	HttpWebResponse httpResponse = null; 
	if (url.Contains("https://"))
	{
		ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult);
		httpRequest = (HttpWebRequest)WebRequest.CreateDefault(new Uri(url));
	}
	else
	{
		httpRequest = (HttpWebRequest)WebRequest.Create(url);
	}
	httpRequest.Method = method;
	if (0 < bodys.Length)
	{
		byte[] data = Encoding.UTF8.GetBytes(bodys);
		using (Stream stream = httpRequest.GetRequestStream())
		{
		stream.Write(data, 0, data.Length);
		}
	}
	try
	{
		httpResponse = (HttpWebResponse)httpRequest.GetResponse();
	}
	catch (WebException ex)
	{
		httpResponse = (HttpWebResponse)ex.Response;
	}
	Console.WriteLine(httpResponse.StatusCode);
	Console.WriteLine(httpResponse.Method);
	Console.WriteLine(httpResponse.Headers);
	Stream st = httpResponse.GetResponseStream();
	StreamReader reader = new StreamReader(st, Encoding.GetEncoding("utf-8"));
	Console.WriteLine(reader.ReadToEnd());
	Console.WriteLine("\n");
}
public static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
{
	return true;
}
# coding:utf-8
"""
Compatible for python2.x and python3.x
requirement: pip install requests
"""
from __future__ import print_function
import requests
# 请求示例 url 默认请求参数已经做URL编码
url = "https://api-gw.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd"
headers = {
    "Accept-Encoding": "gzip",
    "Connection": "close"
}
if __name__ == "__main__":
    r = requests.get(url, headers=headers)
    json_obj = r.json()
    print(json_obj)
url := fmt.Sprintf("https://api-gw.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd", params)
req, err := http.NewRequest("GET", url, nil)
if err != nil {
    panic(err)
}
req.Header.Set("Authorization", apiKey)

client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
    panic(err)
}
defer resp.Body.Close()

body, err := ioutil.ReadAll(resp.Body)
if err != nil {
    panic(err)
}

fmt.Println(string(body))
fetch('https://api-gw.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({"num_iid":"10335871600","domain_type":"jd"})// request parameters here
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error));
<script src="js/obapi.js"></script>
<script type="text/javascript">
obAPI.config({
    debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
    api_url: "https://api-gw.fan-b.com", // 
    api_key: "<您自己的apiKey>", // 必填,
    api_secret: "<您自己的apiSecret>", //
    lang: "cn", // 
    timestamp: "", // 必填,生成签名的时间戳
    nonceStr: "", // 必填,生成签名的随机串
    signature: "",// 必填,签名
    jsApiList: [] // 必填,需要使用的JS接口列表
});
</script>
<div id="api_data_box"></div>
<script type="text/javascript">
obAPI.exec(
     {
     "api_type":"jd",
     "api_name" : "item_get_app",
     "api_params": {"num_iid":"10335871600","domain_type":"jd"}//num_iid=10335871600&domain_type=jd,#具体参数请参考文档说明
     },
     function(e){
        document.querySelector("#api_data_box").innerHTML=JSON.stringify(e)
     }
);
</script>
require "net/http"
require "uri"
url = URI("https://api-gw.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body 
import Foundation
 
let url = URL(string: "https://api-gw.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd")!
let task = URLSession.shared.dataTask(with: url) { data, response, error in
    guard let data = data else {
        print("Error: No data was returned")
        return
    }
     
    if let data = String(data: data, encoding: .utf8) {
        print(data)
    }
}
task.resume()
NSURL *myUrl = [NSURL URLWithString:@"https://api-gw.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd"];

NSMutableURLRequest *request=[NSMutableURLRequest requestWithURL:myUrl cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:60.0];

[request setHTTPMethod:@"GET"];
NSError *error;
NSURLResponse *response;

NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];

NSString *result = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
NSLog(@"%@",result);
#include<stdio.h>
#include <stdlib.h>
#include<string.h>
#include<curl/curl.h>

int main(){
  CURL *curl;  
  CURLcode res;   
  struct curl_slist *headers=NULL; 

  char url[] = "https://api-gw.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd";
  curl_global_init(CURL_GLOBAL_ALL); 
  curl = curl_easy_init(); 

  if(curl) {
    curl_easy_setopt(curl, CURLOPT_URL,url);
    headers = curl_slist_append(headers, "Content-Type: application/json"); 

    curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers); 
    res = curl_easy_perform(curl);

    if(res != CURLE_OK){
      printf("curl_easy_perform(): %s\n",curl_easy_strerror(res));                     
    }
    curl_easy_cleanup(curl);          
  }
  curl_global_cleanup();
  return 0;
}
#include<iostream>
#include<string>
#include<curl/curl.h>

using namespace std;

static size_t Data(void *ptr, size_t size, size_t nmemb, string *stream)
{
    std::size_t realSize = size *nmemb;
    auto *realPtr = reinterpret_cast<char *>(ptr);

    for (std::size_t i=0;i<realSize;++i) {
        *(stream) += *(realPtr + i);
    }

    return realSize;
}

int main(){

     CURL *curl;
     CURLcode result;
     string readBuffer;
     curl = curl_easy_init();

     if(curl) {

         curl_easy_setopt(curl, CURLOPT_URL, "https://api-gw.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd");
         curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
         curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, Data);
         curl_easy_setopt(curl, CURLOPT_WRITEDATA, &readBuffer);

         result = curl_easy_perform(curl);

         if(result == CURLE_OK) {
             cout<<readBuffer<<endl;
         }else{
             cerr<<"curl_easy error:"<<curl_easy_strerror(result)<<endl;
         }

         curl_easy_cleanup(curl);
     }
     return 0;
}
const https = require("https");

https.get("https://api-gw.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd", (resp) => {
  let data = "";

  resp.on("data", (chunk) => {
    data += chunk;
  });

  resp.on("end", () => {
    console.log(data);
  });
}).on("error", (err) => {
  console.log("Error: " + err.message);
});
import java.net.HttpURLConnection
import java.net.URL

fun main() {
    val url = URL("https://api-gw.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd")
    val con = url.openConnection() as HttpURLConnection
    con.requestMethod = "GET"

    val responseCode = con.responseCode
    if (responseCode == HttpURLConnection.HTTP_OK) { // success
        val inputLine = con.inputStream.bufferedReader().use { it.readText() }
        println(inputLine)
    } else {
        println("GET request failed")
    }
}
use std::io::{self, Read};
use reqwest;

fn main() -> io::Result<()> {

    let mut resp = reqwest::get("https://api-gw.fan-b.com/jd/item_get_app/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&num_iid=10335871600&domain_type=jd")?;
    let mut content = String::new();
    resp.read_to_string(&mut content)?;

    println!("{}", content);

    Ok(())
}

响应示例
{
    "item": {
        "num_iid": "10132443864650",
        "price": 3199,
        "title": "Wootingwooting键盘80HE wooting满改60HE+pcb 磁轴客制化七夕送男友女友 80HE满改【浮世绘2.0】 有线",
        "cid": 689,
        "shop_name": "WOOTING经营部",
        "shop_id": "13279251",
        "brand": "Wooting",
        "brandId": "1454860",
        "item_imgs": [
            "http://img13.360buyimg.com/n12/jfs/t1/230239/17/38590/60191/676cf65eF460bac53/669d532e23e063ec.jpg",
            "http://img13.360buyimg.com/n12/jfs/t1/266658/4/3454/44700/676cf65eF6733ceba/514b026cc6c3261e.jpg",
            "http://img13.360buyimg.com/n12/jfs/t1/252261/33/4835/54449/676cf65eFf833b40c/5bf74e80682341a3.jpg"
        ],
        "sku_color_size": [
            {
                "spec_key_id": "1",
                "spec_key": "颜色",
                "spec_values": [
                    {
                        "1001": "80HE满改【镂空白水晶】"
                    },
                    {
                        "1003": "80HE满改【蚀金玫瑰】"
                    },
                    {
                        "1004": "80HE满改【粉水晶】"
                    },
                    {
                        "1005": "80HE满改【白狐狸面具】"
                    },
                    {
                        "1006": "80HE满改【白粉渐变】"
                    },
                    {
                        "1007": "80HE满改【sakura樱花】"
                    },
                    {
                        "1008": "80HE满改【HOLY镂空白水晶】"
                    },
                    {
                        "1009": "80HE满改【蓝水晶】"
                    },
                    {
                        "1010": "80HE满改【HOLY镂空初号机】"
                    },
                    {
                        "1011": "80HE满改【黑粉渐变】"
                    },
                    {
                        "1012": "80HE满改【耿鬼】"
                    },
                    {
                        "1013": "代组WOOTING80HE【+84颗磁玉轴】"
                    },
                    {
                        "1014": "80HE满改【浮世绘2.0】"
                    },
                    {
                        "1015": "WOOTING80HE【+4颗磁玉轴】"
                    },
                    {
                        "1016": "WOOTING80HE【+84颗磁玉轴】"
                    },
                    {
                        "1017": "80HE满改【HOLY镂空黑雾透】"
                    },
                    {
                        "1018": "WOOTING80HE【黑色全新现货】"
                    },
                    {
                        "1019": "80HE满改【雪女】"
                    },
                    {
                        "1020": "80HE满改【泰坦国度印花集】"
                    },
                    {
                        "1021": "80HE满改【漫画】"
                    },
                    {
                        "1022": "80HE满改【玛奇玛锁链】"
                    },
                    {
                        "1023": "80HE满改【玛奇玛】"
                    },
                    {
                        "1024": "80HE满改【凌波丽】"
                    },
                    {
                        "1025": "80HE满改【黑金大字】"
                    },
                    {
                        "1026": "代组WOOTING80HE【+4颗磁玉轴】"
                    },
                    {
                        "1027": "80HE满改【印花集】"
                    }
                ]
            },
            {
                "spec_key_id": "2",
                "spec_key": "尺码",
                "spec_values": [
                    {
                        "2002": "有线"
                    }
                ]
            }
        ],
        "skus": [
            {
                "id": 10129487681462,
                "price": null,
                "original_price": null,
                "specs": [
                    {
                        "pname": "颜色",
                        "pid": "1",
                        "values": [
                            {
                                "vname": "80HE满改【镂空白水晶】",
                                "vid": "1001"
                            }
                        ],
                        "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/316306/20/22226/223813/688d7b0aF6f682aa7/54ca280bb5119c9a.jpg"
                    },
                    {
                        "pname": "尺码",
                        "pid": "2",
                        "values": [
                            {
                                "vname": "有线",
                                "vid": "2002"
                            }
                        ],
                        "img_url": null
                    }
                ],
                "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/316306/20/22226/223813/688d7b0aF6f682aa7/54ca280bb5119c9a.jpg",
                "quantity": 200
            },
            {
                "id": 10129487681461,
                "price": null,
                "original_price": null,
                "specs": [
                    {
                        "pname": "颜色",
                        "pid": "1",
                        "values": [
                            {
                                "vname": "80HE满改【蚀金玫瑰】",
                                "vid": "1003"
                            }
                        ],
                        "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/321162/36/24360/203796/689ae365F306d7b08/05458f460788c81e.jpg"
                    },
                    {
                        "pname": "尺码",
                        "pid": "2",
                        "values": [
                            {
                                "vname": "有线",
                                "vid": "2002"
                            }
                        ],
                        "img_url": null
                    }
                ],
                "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/321162/36/24360/203796/689ae365F306d7b08/05458f460788c81e.jpg",
                "quantity": 200
            },
            {
                "id": 10132443864649,
                "price": null,
                "original_price": null,
                "specs": [
                    {
                        "pname": "颜色",
                        "pid": "1",
                        "values": [
                            {
                                "vname": "80HE满改【粉水晶】",
                                "vid": "1004"
                            }
                        ],
                        "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/266960/3/3510/53905/676cf656F7af93da8/00f15f8e058bbab8.jpg"
                    },
                    {
                        "pname": "尺码",
                        "pid": "2",
                        "values": [
                            {
                                "vname": "有线",
                                "vid": "2002"
                            }
                        ],
                        "img_url": null
                    }
                ],
                "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/266960/3/3510/53905/676cf656F7af93da8/00f15f8e058bbab8.jpg",
                "quantity": 200
            },
            {
                "id": 10132443864648,
                "price": null,
                "original_price": null,
                "specs": [
                    {
                        "pname": "颜色",
                        "pid": "1",
                        "values": [
                            {
                                "vname": "80HE满改【白狐狸面具】",
                                "vid": "1005"
                            }
                        ],
                        "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/254804/21/4655/59762/676cf64bF4a07e352/2a91b177b0d9b63a.jpg"
                    },
                    {
                        "pname": "尺码",
                        "pid": "2",
                        "values": [
                            {
                                "vname": "有线",
                                "vid": "2002"
                            }
                        ],
                        "img_url": null
                    }
                ],
                "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/254804/21/4655/59762/676cf64bF4a07e352/2a91b177b0d9b63a.jpg",
                "quantity": 200
            },
            {
                "id": 10132443864647,
                "price": null,
                "original_price": null,
                "specs": [
                    {
                        "pname": "颜色",
                        "pid": "1",
                        "values": [
                            {
                                "vname": "80HE满改【白粉渐变】",
                                "vid": "1006"
                            }
                        ],
                        "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/256053/12/4603/62711/676cf62fF3cf813be/07977e194bc96098.jpg"
                    },
                    {
                        "pname": "尺码",
                        "pid": "2",
                        "values": [
                            {
                                "vname": "有线",
                                "vid": "2002"
                            }
                        ],
                        "img_url": null
                    }
                ],
                "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/256053/12/4603/62711/676cf62fF3cf813be/07977e194bc96098.jpg",
                "quantity": 200
            },
            {
                "id": 10132443864646,
                "price": null,
                "original_price": null,
                "specs": [
                    {
                        "pname": "颜色",
                        "pid": "1",
                        "values": [
                            {
                                "vname": "80HE满改【sakura樱花】",
                                "vid": "1007"
                            }
                        ],
                        "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/255246/36/4245/68672/676cf62aFb15ca2f9/920c682e651b9161.jpg"
                    },
                    {
                        "pname": "尺码",
                        "pid": "2",
                        "values": [
                            {
                                "vname": "有线",
                                "vid": "2002"
                            }
                        ],
                        "img_url": null
                    }
                ],
                "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/255246/36/4245/68672/676cf62aFb15ca2f9/920c682e651b9161.jpg",
                "quantity": 200
            },
            {
                "id": 10163083498984,
                "price": null,
                "original_price": null,
                "specs": [
                    {
                        "pname": "颜色",
                        "pid": "1",
                        "values": [
                            {
                                "vname": "80HE满改【HOLY镂空白水晶】",
                                "vid": "1008"
                            }
                        ],
                        "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/308995/9/15516/276877/686e0648Fe9b6f054/09bc27fa66f3a617.jpg"
                    },
                    {
                        "pname": "尺码",
                        "pid": "2",
                        "values": [
                            {
                                "vname": "有线",
                                "vid": "2002"
                            }
                        ],
                        "img_url": null
                    }
                ],
                "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/308995/9/15516/276877/686e0648Fe9b6f054/09bc27fa66f3a617.jpg",
                "quantity": 200
            },
            {
                "id": 10132443864645,
                "price": null,
                "original_price": null,
                "specs": [
                    {
                        "pname": "颜色",
                        "pid": "1",
                        "values": [
                            {
                                "vname": "80HE满改【蓝水晶】",
                                "vid": "1009"
                            }
                        ],
                        "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/256831/9/3943/78100/676cf61dF04fbe78c/069d6bc7b6b3a74b.jpg"
                    },
                    {
                        "pname": "尺码",
                        "pid": "2",
                        "values": [
                            {
                                "vname": "有线",
                                "vid": "2002"
                            }
                        ],
                        "img_url": null
                    }
                ],
                "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/256831/9/3943/78100/676cf61dF04fbe78c/069d6bc7b6b3a74b.jpg",
                "quantity": 200
            },
            {
                "id": 10163083498985,
                "price": null,
                "original_price": null,
                "specs": [
                    {
                        "pname": "颜色",
                        "pid": "1",
                        "values": [
                            {
                                "vname": "80HE满改【HOLY镂空初号机】",
                                "vid": "1010"
                            }
                        ],
                        "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/311638/1/12127/463765/685b4d42F590b6ebf/eb20f101bdfc119f.jpg"
                    },
                    {
                        "pname": "尺码",
                        "pid": "2",
                        "values": [
                            {
                                "vname": "有线",
                                "vid": "2002"
                            }
                        ],
                        "img_url": null
                    }
                ],
                "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/311638/1/12127/463765/685b4d42F590b6ebf/eb20f101bdfc119f.jpg",
                "quantity": 200
            },
            {
                "id": 10132443864652,
                "price": null,
                "original_price": null,
                "specs": [
                    {
                        "pname": "颜色",
                        "pid": "1",
                        "values": [
                            {
                                "vname": "80HE满改【黑粉渐变】",
                                "vid": "1011"
                            }
                        ],
                        "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/258688/24/3595/51925/676cf66bF21298b7a/02283610d555c6ad.jpg"
                    },
                    {
                        "pname": "尺码",
                        "pid": "2",
                        "values": [
                            {
                                "vname": "有线",
                                "vid": "2002"
                            }
                        ],
                        "img_url": null
                    }
                ],
                "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/258688/24/3595/51925/676cf66bF21298b7a/02283610d555c6ad.jpg",
                "quantity": 200
            },
            {
                "id": 10132443864651,
                "price": null,
                "original_price": null,
                "specs": [
                    {
                        "pname": "颜色",
                        "pid": "1",
                        "values": [
                            {
                                "vname": "80HE满改【耿鬼】",
                                "vid": "1012"
                            }
                        ],
                        "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/316817/25/20857/227724/688d7e7fF476d8762/d83fb394f3279f92.jpg"
                    },
                    {
                        "pname": "尺码",
                        "pid": "2",
                        "values": [
                            {
                                "vname": "有线",
                                "vid": "2002"
                            }
                        ],
                        "img_url": null
                    }
                ],
                "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/316817/25/20857/227724/688d7e7fF476d8762/d83fb394f3279f92.jpg",
                "quantity": 200
            },
            {
                "id": 10128444538100,
                "price": null,
                "original_price": null,
                "specs": [
                    {
                        "pname": "颜色",
                        "pid": "1",
                        "values": [
                            {
                                "vname": "代组WOOTING80HE【+84颗磁玉轴】",
                                "vid": "1013"
                            }
                        ],
                        "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/243110/4/27746/153580/67516c28Ff9e0046d/bea5f0fe3a6fb49f.jpg"
                    },
                    {
                        "pname": "尺码",
                        "pid": "2",
                        "values": [
                            {
                                "vname": "有线",
                                "vid": "2002"
                            }
                        ],
                        "img_url": null
                    }
                ],
                "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/243110/4/27746/153580/67516c28Ff9e0046d/bea5f0fe3a6fb49f.jpg",
                "quantity": 200
            },
            {
                "id": 10132443864650,
                "price": null,
                "original_price": null,
                "specs": [
                    {
                        "pname": "颜色",
                        "pid": "1",
                        "values": [
                            {
                                "vname": "80HE满改【浮世绘2.0】",
                                "vid": "1014"
                            }
                        ],
                        "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/230239/17/38590/60191/676cf65eF460bac53/669d532e23e063ec.jpg"
                    },
                    {
                        "pname": "尺码",
                        "pid": "2",
                        "values": [
                            {
                                "vname": "有线",
                                "vid": "2002"
                            }
                        ],
                        "img_url": null
                    }
                ],
                "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/230239/17/38590/60191/676cf65eF460bac53/669d532e23e063ec.jpg",
                "quantity": 200
            },
            {
                "id": 10125967131992,
                "price": null,
                "original_price": null,
                "specs": [
                    {
                        "pname": "颜色",
                        "pid": "1",
                        "values": [
                            {
                                "vname": "WOOTING80HE【+4颗磁玉轴】",
                                "vid": "1015"
                            }
                        ],
                        "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/192789/32/54086/153439/67516c1cF95f6cdcc/76889d78b3caeadd.jpg"
                    },
                    {
                        "pname": "尺码",
                        "pid": "2",
                        "values": [
                            {
                                "vname": "有线",
                                "vid": "2002"
                            }
                        ],
                        "img_url": null
                    }
                ],
                "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/192789/32/54086/153439/67516c1cF95f6cdcc/76889d78b3caeadd.jpg",
                "quantity": 200
            },
            {
                "id": 10125967131993,
                "price": null,
                "original_price": null,
                "specs": [
                    {
                        "pname": "颜色",
                        "pid": "1",
                        "values": [
                            {
                                "vname": "WOOTING80HE【+84颗磁玉轴】",
                                "vid": "1016"
                            }
                        ],
                        "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/200147/33/49695/153580/67516c1fF7de4f29d/9b9578f4cc7ed1a6.jpg"
                    },
                    {
                        "pname": "尺码",
                        "pid": "2",
                        "values": [
                            {
                                "vname": "有线",
                                "vid": "2002"
                            }
                        ],
                        "img_url": null
                    }
                ],
                "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/200147/33/49695/153580/67516c1fF7de4f29d/9b9578f4cc7ed1a6.jpg",
                "quantity": 200
            },
            {
                "id": 10160302383648,
                "price": null,
                "original_price": null,
                "specs": [
                    {
                        "pname": "颜色",
                        "pid": "1",
                        "values": [
                            {
                                "vname": "80HE满改【HOLY镂空黑雾透】",
                                "vid": "1017"
                            }
                        ],
                        "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/312144/16/7189/240539/68426e8aF03b675b3/d74fe5c89928062e.jpg"
                    },
                    {
                        "pname": "尺码",
                        "pid": "2",
                        "values": [
                            {
                                "vname": "有线",
                                "vid": "2002"
                            }
                        ],
                        "img_url": null
                    }
                ],
                "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/312144/16/7189/240539/68426e8aF03b675b3/d74fe5c89928062e.jpg",
                "quantity": 200
            },
            {
                "id": 10125967131991,
                "price": null,
                "original_price": null,
                "specs": [
                    {
                        "pname": "颜色",
                        "pid": "1",
                        "values": [
                            {
                                "vname": "WOOTING80HE【黑色全新现货】",
                                "vid": "1018"
                            }
                        ],
                        "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/178398/30/54442/83324/6757f53aF50bf4490/91528a00b209a9bc.jpg"
                    },
                    {
                        "pname": "尺码",
                        "pid": "2",
                        "values": [
                            {
                                "vname": "有线",
                                "vid": "2002"
                            }
                        ],
                        "img_url": null
                    }
                ],
                "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/178398/30/54442/83324/6757f53aF50bf4490/91528a00b209a9bc.jpg",
                "quantity": 200
            },
            {
                "id": 10132443864659,
                "price": null,
                "original_price": null,
                "specs": [
                    {
                        "pname": "颜色",
                        "pid": "1",
                        "values": [
                            {
                                "vname": "80HE满改【雪女】",
                                "vid": "1019"
                            }
                        ],
                        "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/226339/4/37193/72208/676cf6b1Fff3a1a11/3229ea77108f4fb6.jpg"
                    },
                    {
                        "pname": "尺码",
                        "pid": "2",
                        "values": [
                            {
                                "vname": "有线",
                                "vid": "2002"
                            }
                        ],
                        "img_url": null
                    }
                ],
                "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/226339/4/37193/72208/676cf6b1Fff3a1a11/3229ea77108f4fb6.jpg",
                "quantity": 200
            },
            {
                "id": 10132443864658,
                "price": null,
                "original_price": null,
                "specs": [
                    {
                        "pname": "颜色",
                        "pid": "1",
                        "values": [
                            {
                                "vname": "80HE满改【泰坦国度印花集】",
                                "vid": "1020"
                            }
                        ],
                        "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/300888/32/10080/238504/68919777F53205591/c1b07b95f06c83e9.jpg"
                    },
                    {
                        "pname": "尺码",
                        "pid": "2",
                        "values": [
                            {
                                "vname": "有线",
                                "vid": "2002"
                            }
                        ],
                        "img_url": null
                    }
                ],
                "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/300888/32/10080/238504/68919777F53205591/c1b07b95f06c83e9.jpg",
                "quantity": 200
            },
            {
                "id": 10132443864657,
                "price": null,
                "original_price": null,
                "specs": [
                    {
                        "pname": "颜色",
                        "pid": "1",
                        "values": [
                            {
                                "vname": "80HE满改【漫画】",
                                "vid": "1021"
                            }
                        ],
                        "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/253815/2/4621/69635/676cf6a3Fd61c4e3c/885aeadba5704bba.jpg"
                    },
                    {
                        "pname": "尺码",
                        "pid": "2",
                        "values": [
                            {
                                "vname": "有线",
                                "vid": "2002"
                            }
                        ],
                        "img_url": null
                    }
                ],
                "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/253815/2/4621/69635/676cf6a3Fd61c4e3c/885aeadba5704bba.jpg",
                "quantity": 200
            },
            {
                "id": 10132443864656,
                "price": null,
                "original_price": null,
                "specs": [
                    {
                        "pname": "颜色",
                        "pid": "1",
                        "values": [
                            {
                                "vname": "80HE满改【玛奇玛锁链】",
                                "vid": "1022"
                            }
                        ],
                        "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/259251/26/3384/53799/676cf69dFfbf1ab99/f57ff371255558ed.jpg"
                    },
                    {
                        "pname": "尺码",
                        "pid": "2",
                        "values": [
                            {
                                "vname": "有线",
                                "vid": "2002"
                            }
                        ],
                        "img_url": null
                    }
                ],
                "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/259251/26/3384/53799/676cf69dFfbf1ab99/f57ff371255558ed.jpg",
                "quantity": 200
            },
            {
                "id": 10132443864655,
                "price": null,
                "original_price": null,
                "specs": [
                    {
                        "pname": "颜色",
                        "pid": "1",
                        "values": [
                            {
                                "vname": "80HE满改【玛奇玛】",
                                "vid": "1023"
                            }
                        ],
                        "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/255823/18/4597/49020/676cf694Fcb2f11b2/85f9a0f89ed74d17.jpg"
                    },
                    {
                        "pname": "尺码",
                        "pid": "2",
                        "values": [
                            {
                                "vname": "有线",
                                "vid": "2002"
                            }
                        ],
                        "img_url": null
                    }
                ],
                "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/255823/18/4597/49020/676cf694Fcb2f11b2/85f9a0f89ed74d17.jpg",
                "quantity": 200
            },
            {
                "id": 10132443864654,
                "price": null,
                "original_price": null,
                "specs": [
                    {
                        "pname": "颜色",
                        "pid": "1",
                        "values": [
                            {
                                "vname": "80HE满改【凌波丽】",
                                "vid": "1024"
                            }
                        ],
                        "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/267129/34/3361/80522/676cf67eFdfd882f2/1c472158c45c9b0d.jpg"
                    },
                    {
                        "pname": "尺码",
                        "pid": "2",
                        "values": [
                            {
                                "vname": "有线",
                                "vid": "2002"
                            }
                        ],
                        "img_url": null
                    }
                ],
                "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/267129/34/3361/80522/676cf67eFdfd882f2/1c472158c45c9b0d.jpg",
                "quantity": 200
            },
            {
                "id": 10132443864653,
                "price": null,
                "original_price": null,
                "specs": [
                    {
                        "pname": "颜色",
                        "pid": "1",
                        "values": [
                            {
                                "vname": "80HE满改【黑金大字】",
                                "vid": "1025"
                            }
                        ],
                        "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/267033/3/3289/51624/676cf676F92376b30/0a026b6df1b92565.jpg"
                    },
                    {
                        "pname": "尺码",
                        "pid": "2",
                        "values": [
                            {
                                "vname": "有线",
                                "vid": "2002"
                            }
                        ],
                        "img_url": null
                    }
                ],
                "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/267033/3/3289/51624/676cf676F92376b30/0a026b6df1b92565.jpg",
                "quantity": 200
            },
            {
                "id": 10128444538099,
                "price": null,
                "original_price": null,
                "specs": [
                    {
                        "pname": "颜色",
                        "pid": "1",
                        "values": [
                            {
                                "vname": "代组WOOTING80HE【+4颗磁玉轴】",
                                "vid": "1026"
                            }
                        ],
                        "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/221777/2/51299/153439/67516c24F5eae87b0/72e8aa6f2b9785f3.jpg"
                    },
                    {
                        "pname": "尺码",
                        "pid": "2",
                        "values": [
                            {
                                "vname": "有线",
                                "vid": "2002"
                            }
                        ],
                        "img_url": null
                    }
                ],
                "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/221777/2/51299/153439/67516c24F5eae87b0/72e8aa6f2b9785f3.jpg",
                "quantity": 200
            },
            {
                "id": 10132443864660,
                "price": null,
                "original_price": null,
                "specs": [
                    {
                        "pname": "颜色",
                        "pid": "1",
                        "values": [
                            {
                                "vname": "80HE满改【印花集】",
                                "vid": "1027"
                            }
                        ],
                        "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/260360/17/3466/79744/676cf6bbF6c03ad4d/65a03c5ff1db33be.jpg"
                    },
                    {
                        "pname": "尺码",
                        "pid": "2",
                        "values": [
                            {
                                "vname": "有线",
                                "vid": "2002"
                            }
                        ],
                        "img_url": null
                    }
                ],
                "img_url": "https://img10.360buyimg.com/imgzone/jfs/t1/260360/17/3466/79744/676cf6bbF6c03ad4d/65a03c5ff1db33be.jpg",
                "quantity": 200
            }
        ],
        "_ddf": "yke",
        "format_check": "ok"
    },
    "error": "",
    "secache": "62fd56c1cb06c6b8190ec67151622347",
    "secache_time": 1757053335,
    "secache_date": "2025-09-05 14:22:15",
    "reason": "",
    "error_code": "0000",
    "cache": 0,
    "api_info": "today: max:15000 all[=++];expires:2031-01-01",
    "execution_time": "3.497",
    "server_time": "Beijing/2025-09-05 14:22:15",
    "client_ip": "127.0.0.1",
    "call_args": {
        "num_iid": "10132443864650"
    },
    "api_type": "jd",
    "server_memory": "3.75MB",
    "last_id": false
}
异常示例
{
	"error": "item-not-found",
	"reason": "item-not-found 接口文档:https://open.fan-b.com/help/api/jd.item_get_app.html",
	"error_code": "2000",
	"api_info": "today:1 max:11000",
	"execution_time": "0.898",
	"server_time": "Beijing/2025-07-01 09:14:13",
	"client_ip": "106.6.32.222",
	"api_type": "jd",
	"translate_language": "zh-CN",
	"translate_engine": "google_new",
	"server_memory": "3.36MB",
	"request_id": "gw-1.62522f64332a5"}
相关资料
错误码解释
状态代码(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:271449542271449542(微信同号)