凡邦京东获得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": {
        "allColorSet": "[\"【14 星光白】\",\"【14 午夜黑】\",\"【14 紫色】\",\"【14 蓝色】\",\"【14 红色】\",\"【14 黄色】\"]",
        "allSizeSet": "[\"128GB 【公开版全网通】\",\"256GB 【公开版全网通】\",\"512GB 【公开版全网通】\"]",
        "allSpecSet": "[]",
        "bottomTabConfigJson": "{\"isPicLazyLoad\":true,\"hasHistory\":false}",
        "changeSkuFlag": 0,
        "couponInfo": [

        ],
        "defaultAddress": {
            "cityId": "72",
            "cityName": "朝阳区",
            "countyId": "2799",
            "countyName": "三环以内",
            "provinceId": "1",
            "provinceName": "北京",
            "townId": "0",
            "townName": ""
        },
        "feeType": false,
        "jdPriceFractionPart": "00",
        "jdPriceIntegerPart": "4499",
        "proInformation": {
            "activityList": null,
            "bigPrice": null,
            "domain": null,
            "giftList": null,
            "proFlagList": null,
            "proInfo": null,
            "proSalesInfo": null,
            "proText": null,
            "proTitle": null,
            "prompt": "",
            "suitList": null,
            "switchSkin": null,
            "tip": null
        },
        "product_info": {
            "propGroups": [
                {
                    "atts": [
                        {
                            "attName": "机型",
                            "vals": [
                                "Apple iPhone 14"
                            ]
                        },
                        {
                            "attName": "电信设备进网许可证",
                            "vals": [
                                "是"
                            ]
                        }
                    ],
                    "groupName": "主体"
                },
                {
                    "atts": [
                        {
                            "attName": "屏幕尺寸",
                            "vals": [
                                "6.1英寸"
                            ]
                        },
                        {
                            "attName": "屏幕刷新率",
                            "vals": [
                                "以官网信息为准"
                            ]
                        },
                        {
                            "attName": "屏幕特色",
                            "vals": [
                                "无"
                            ]
                        }
                    ],
                    "groupName": "屏幕"
                },
                {
                    "atts": [
                        {
                            "attName": "生物识别",
                            "vals": [
                                "人脸识别"
                            ]
                        }
                    ],
                    "groupName": "手机特性"
                },
                {
                    "atts": [
                        {
                            "attName": "充电接口",
                            "vals": [
                                "Lightning"
                            ]
                        }
                    ],
                    "groupName": "数据接口"
                },
                {
                    "atts": [
                        {
                            "attName": "系统",
                            "vals": [
                                "iOS"
                            ]
                        }
                    ],
                    "groupName": "操作系统"
                },
                {
                    "atts": [
                        {
                            "attName": "CPU型号",
                            "vals": [
                                "A15"
                            ]
                        },
                        {
                            "attName": "屏幕分辨率",
                            "vals": [
                                "FHD+"
                            ]
                        },
                        {
                            "attName": "屏幕材质",
                            "vals": [
                                "OLED直屏"
                            ]
                        },
                        {
                            "attName": "后摄主像素",
                            "vals": [
                                "1200万像素"
                            ]
                        },
                        {
                            "attName": "三防标准",
                            "vals": [
                                "IP68"
                            ]
                        }
                    ],
                    "groupName": "参数"
                }
            ]
        },
        "saveEnergyConfig": true,
        "sid": "171a34184cd0ba09d8ee1da66396ca27",
        "stock": {
            "changeSkuFlag": 0,
            "changeSkuToast": null,
            "deliveryFlag": null,
            "fare": "在线支付免运费",
            "flag": false,
            "iconList": null,
            "jdPrice": "4499.00",
            "newSku": null,
            "servIconList": [
                {
                    "iconType": "right",
                    "imageUrl": "https://m.360buyimg.com/mobilecms/jfs/t1918/274/1086575987/1970/bc766f2d/5680f4b3N24b48659.png",
                    "show": true,
                    "sortId": 10,
                    "text": "七天退货",
                    "tip": "支持7天无理由退货"
                }
            ],
            "status": "无货",
            "stockNotice": false,
            "wareId": "10074576723503"
        },
        "stockNotice": false,
        "thirdCategoryId": "13768",
        "userFlagCheck": "8fab3d05778a46470a9525142b69dd90",
        "ware": {
            "OP": false,
            "ad": {
                "adLink": "",
                "adLinkContent": "",
                "adword": "夏日新品即将发售iPhone16,iPhone16ProMax相约9月10日敬请期待!iphone15"
            },
            "adLink": null,
            "addCart": null,
            "adword": "",
            "agreeurl": null,
            "attrs": null,
            "averageScore": null,
            "basicInfo": null,
            "bitauto": false,
            "bitautoUrl": null,
            "book": false,
            "bookAttrs": null,
            "bookInfo": {
                "author": null,
                "display": false,
                "publisher": null
            },
            "canFreeRead": false,
            "canRepair": null,
            "cartFlag": false,
            "cartImage": null,
            "catalogue": null,
            "catalogyName": null,
            "category": "13765;13767;13768",
            "categoryForShop": null,
            "chatUrl": "https://m.360buyimg.com/n3/jfs/t1/254640/25/19958/68375/67acabc7Ffded3867/13fbcf77cb308cae.jpg",
            "code": "0",
            "collage": null,
            "color": null,
            "colorSizeInfo": null,
            "comNum": null,
            "commissionPrice": null,
            "consultationCount": null,
            "couponInfo": null,
            "cousultNum": null,
            "description": null,
            "diffPrice": null,
            "directShow": false,
            "downPrice": false,
            "drugInfo": null,
            "easyBuy": false,
            "ebay": false,
            "endRemainTime": null,
            "fare": "在线支付免运费",
            "fatherId": null,
            "feeInfo": null,
            "fid": 0,
            "gift": false,
            "goAuthToast": "购买该商品需要实名认证哦<br>您还未实名认证~",
            "good": null,
            "hasAddCartNode": false,
            "hasChat": false,
            "hasShop": false,
            "iconList": null,
            "idAuth": null,
            "idAuthToast": "null",
            "images": [
                {
                    "bigpath": "https://m.360buyimg.com/n0/jfs/t1/254640/25/19958/68375/67acabc7Ffded3867/13fbcf77cb308cae.jpg!q70.jpg",
                    "kwxpath": "https://m.360buyimg.com/n12/jfs/t1/254640/25/19958/68375/67acabc7Ffded3867/13fbcf77cb308cae.jpg!q70.jpg",
                    "n1Path": null,
                    "n2Path": null,
                    "newpath": "https://m.360buyimg.com/n4/jfs/t1/254640/25/19958/68375/67acabc7Ffded3867/13fbcf77cb308cae.jpg!q70.jpg",
                    "wareId": 0
                },
                {
                    "bigpath": "https://m.360buyimg.com/n0/jfs/t1/90314/11/37240/16138/644faaabFfc1efeae/729f2527119f1787.jpg!q70.jpg",
                    "kwxpath": "https://m.360buyimg.com/n12/jfs/t1/90314/11/37240/16138/644faaabFfc1efeae/729f2527119f1787.jpg!q70.jpg",
                    "n1Path": null,
                    "n2Path": null,
                    "newpath": "https://m.360buyimg.com/n4/jfs/t1/90314/11/37240/16138/644faaabFfc1efeae/729f2527119f1787.jpg!q70.jpg",
                    "wareId": 0
                },
                {
                    "bigpath": "https://m.360buyimg.com/n0/jfs/t1/162316/40/36964/16128/644faaabFa9bc68ca/06884872089b7273.jpg!q70.jpg",
                    "kwxpath": "https://m.360buyimg.com/n12/jfs/t1/162316/40/36964/16128/644faaabFa9bc68ca/06884872089b7273.jpg!q70.jpg",
                    "n1Path": null,
                    "n2Path": null,
                    "newpath": "https://m.360buyimg.com/n4/jfs/t1/162316/40/36964/16128/644faaabFa9bc68ca/06884872089b7273.jpg!q70.jpg",
                    "wareId": 0
                },
                {
                    "bigpath": "https://m.360buyimg.com/n0/jfs/t1/200055/19/34029/15706/644faaabFeebeff94/bf18d22871d8cdde.jpg!q70.jpg",
                    "kwxpath": "https://m.360buyimg.com/n12/jfs/t1/200055/19/34029/15706/644faaabFeebeff94/bf18d22871d8cdde.jpg!q70.jpg",
                    "n1Path": null,
                    "n2Path": null,
                    "newpath": "https://m.360buyimg.com/n4/jfs/t1/200055/19/34029/15706/644faaabFeebeff94/bf18d22871d8cdde.jpg!q70.jpg",
                    "wareId": 0
                },
                {
                    "bigpath": "https://m.360buyimg.com/n0/jfs/t1/206558/15/30077/14316/644faaabF73c0bb04/249f6ad41940f266.jpg!q70.jpg",
                    "kwxpath": "https://m.360buyimg.com/n12/jfs/t1/206558/15/30077/14316/644faaabF73c0bb04/249f6ad41940f266.jpg!q70.jpg",
                    "n1Path": null,
                    "n2Path": null,
                    "newpath": "https://m.360buyimg.com/n4/jfs/t1/206558/15/30077/14316/644faaabF73c0bb04/249f6ad41940f266.jpg!q70.jpg",
                    "wareId": 0
                },
                {
                    "bigpath": "https://m.360buyimg.com/n0/jfs/t1/102460/4/37274/21138/644faaabF0c16ed7a/c6a0fe5d3bd2b2fd.jpg!q70.jpg",
                    "kwxpath": "https://m.360buyimg.com/n12/jfs/t1/102460/4/37274/21138/644faaabF0c16ed7a/c6a0fe5d3bd2b2fd.jpg!q70.jpg",
                    "n1Path": null,
                    "n2Path": null,
                    "newpath": "https://m.360buyimg.com/n4/jfs/t1/102460/4/37274/21138/644faaabF0c16ed7a/c6a0fe5d3bd2b2fd.jpg!q70.jpg",
                    "wareId": 0
                },
                {
                    "bigpath": "https://m.360buyimg.com/n0/jfs/t1/223980/14/28402/15500/64d8930aFf3ede4e7/3b6fca18baca41c5.jpg!q70.jpg",
                    "kwxpath": "https://m.360buyimg.com/n12/jfs/t1/223980/14/28402/15500/64d8930aFf3ede4e7/3b6fca18baca41c5.jpg!q70.jpg",
                    "n1Path": null,
                    "n2Path": null,
                    "newpath": "https://m.360buyimg.com/n4/jfs/t1/223980/14/28402/15500/64d8930aFf3ede4e7/3b6fca18baca41c5.jpg!q70.jpg",
                    "wareId": 0
                }
            ],
            "imageurl": null,
            "imgUrlN1": null,
            "imgUrlN5": null,
            "imgurl": null,
            "is7ToReturn": true,
            "is7shortService": "七天退货",
            "isBuyCode": false,
            "isCollect": false,
            "isCustomize": false,
            "isFlashPurchase": "0",
            "isGameCharge": false,
            "isJX": false,
            "isJdEcard": false,
            "isJdOtc": false,
            "isOP": false,
            "isOPImage": null,
            "isOilCard": false,
            "isOneHour": false,
            "isOtc": false,
            "isPop": true,
            "isPostByJd": false,
            "isPrescribedDrug": false,
            "isSam": false,
            "isSamCard": false,
            "isSelfService": "null",
            "isStockNotice": false,
            "isStore": false,
            "isXnzt": "0",
            "isbook": false,
            "jdPrice": "4499.00",
            "jdPriceFractionPart": null,
            "jdPriceIntegerPart": null,
            "jdpriceDIsplay": true,
            "jumpH5Flag": false,
            "jxInfo": null,
            "koInfo": null,
            "locInfo": null,
            "lowestBuy": false,
            "lowestBuyNum": null,
            "maintainFlag": false,
            "marketPrice": null,
            "martPrice": null,
            "maxSales": null,
            "miaosha": false,
            "miaoshaRemainTime": null,
            "mobileShopInfo": null,
            "mpriceDIsplay": false,
            "name": null,
            "newRecommendList": null,
            "num": null,
            "oldChangNew": {
                "imageUrl": "https://m.360buyimg.com/mobilecms/jfs/t2728/270/1274602417/1773/519dd965/573abbd1Nc3e54137.png",
                "name": "高价回收",
                "subName": "换新最高抵2000",
                "url": "https://hsapi.jd.com/url?skuId=10074576723503&cid1=13765&cid2=13767&cid3=13768&province=1&city=72&county=2799&hx=1&source=2&enter=m"
            },
            "orderId": null,
            "orderNum": null,
            "originPrice": null,
            "otcInfo": null,
            "overseaNotices": null,
            "overseaTax": null,
            "plusBuyInfo": null,
            "plusInfo": null,
            "popWareDetailWebViewMap": null,
            "presaleWareInfo": null,
            "priceType": 0,
            "proFlagList": null,
            "proInfo": null,
            "proTitle": null,
            "promotion": false,
            "promotionFlag": null,
            "promotionInfo": {
                "activityList": null,
                "bigPrice": null,
                "domain": null,
                "giftList": null,
                "proFlagList": null,
                "proInfo": null,
                "proSalesInfo": null,
                "proText": null,
                "proTitle": null,
                "prompt": "",
                "suitList": null,
                "switchSkin": null,
                "tip": null
            },
            "reasonTips": "所选地区暂时无货,非常抱歉!",
            "recommendList": null,
            "samInfo": null,
            "saveEnergy": null,
            "saveMoney": null,
            "score": null,
            "servIconList": [
                {
                    "iconType": "right",
                    "imageUrl": "https://m.360buyimg.com/mobilecms/jfs/t1918/274/1086575987/1970/bc766f2d/5680f4b3N24b48659.png",
                    "show": true,
                    "sortId": 10,
                    "text": "七天退货",
                    "tip": "支持7天无理由退货"
                }
            ],
            "service": null,
            "serviceIconUrl": null,
            "shopCustomInfo": {
                "hasChat": false,
                "hasJimi": false,
                "mLink": "https://m.jd.com/product/10074576723503.html",
                "online": false,
                "shopCustomType": null
            },
            "shopInfo": {
                "customerService": {
                    "hasChat": false,
                    "hasJimi": false,
                    "mLink": "https://m.jd.com/product/10074576723503.html",
                    "online": false,
                    "shopCustomType": null
                },
                "shop": null
            },
            "shortService": null,
            "showMartPrice": false,
            "showPlusPrice": false,
            "size": null,
            "skuColor": [
                {
                    "color": "【14 星光白】",
                    "skuId": "10074576723494",
                    "wareId": null
                },
                {
                    "color": "【14 午夜黑】",
                    "skuId": "10074576723497",
                    "wareId": null
                },
                {
                    "color": "【14 紫色】",
                    "skuId": "10074576723500",
                    "wareId": null
                },
                {
                    "color": "【14 蓝色】",
                    "skuId": "10074576723503",
                    "wareId": null
                },
                {
                    "color": "【14 红色】",
                    "skuId": "10074576723506",
                    "wareId": null
                },
                {
                    "color": "【14 黄色】",
                    "skuId": "10083216248549",
                    "wareId": null
                }
            ],
            "skuColorDesc": "颜色",
            "skuColorSize": {
                "colorSize": [
                    {
                        "color": "【14 星光白】",
                        "image": null,
                        "size": "128GB 【公开版全网通】",
                        "skuId": "10074576723494",
                        "spec": "*",
                        "specName": null,
                        "specSequence": ""
                    },
                    {
                        "color": "【14 星光白】",
                        "image": null,
                        "size": "256GB 【公开版全网通】",
                        "skuId": "10074576723495",
                        "spec": "*",
                        "specName": null,
                        "specSequence": ""
                    },
                    {
                        "color": "【14 星光白】",
                        "image": null,
                        "size": "512GB 【公开版全网通】",
                        "skuId": "10074576723496",
                        "spec": "*",
                        "specName": null,
                        "specSequence": ""
                    },
                    {
                        "color": "【14 午夜黑】",
                        "image": null,
                        "size": "128GB 【公开版全网通】",
                        "skuId": "10074576723497",
                        "spec": "*",
                        "specName": null,
                        "specSequence": ""
                    },
                    {
                        "color": "【14 午夜黑】",
                        "image": null,
                        "size": "256GB 【公开版全网通】",
                        "skuId": "10074576723498",
                        "spec": "*",
                        "specName": null,
                        "specSequence": ""
                    },
                    {
                        "color": "【14 午夜黑】",
                        "image": null,
                        "size": "512GB 【公开版全网通】",
                        "skuId": "10074576723499",
                        "spec": "*",
                        "specName": null,
                        "specSequence": ""
                    },
                    {
                        "color": "【14 紫色】",
                        "image": null,
                        "size": "128GB 【公开版全网通】",
                        "skuId": "10074576723500",
                        "spec": "*",
                        "specName": null,
                        "specSequence": ""
                    },
                    {
                        "color": "【14 紫色】",
                        "image": null,
                        "size": "256GB 【公开版全网通】",
                        "skuId": "10074576723501",
                        "spec": "*",
                        "specName": null,
                        "specSequence": ""
                    },
                    {
                        "color": "【14 紫色】",
                        "image": null,
                        "size": "512GB 【公开版全网通】",
                        "skuId": "10074576723502",
                        "spec": "*",
                        "specName": null,
                        "specSequence": ""
                    },
                    {
                        "color": "【14 蓝色】",
                        "image": null,
                        "size": "128GB 【公开版全网通】",
                        "skuId": "10074576723503",
                        "spec": "*",
                        "specName": null,
                        "specSequence": ""
                    },
                    {
                        "color": "【14 蓝色】",
                        "image": null,
                        "size": "256GB 【公开版全网通】",
                        "skuId": "10074576723504",
                        "spec": "*",
                        "specName": null,
                        "specSequence": ""
                    },
                    {
                        "color": "【14 蓝色】",
                        "image": null,
                        "size": "512GB 【公开版全网通】",
                        "skuId": "10074576723505",
                        "spec": "*",
                        "specName": null,
                        "specSequence": ""
                    },
                    {
                        "color": "【14 红色】",
                        "image": null,
                        "size": "128GB 【公开版全网通】",
                        "skuId": "10074576723506",
                        "spec": "*",
                        "specName": null,
                        "specSequence": ""
                    },
                    {
                        "color": "【14 红色】",
                        "image": null,
                        "size": "256GB 【公开版全网通】",
                        "skuId": "10074576723507",
                        "spec": "*",
                        "specName": null,
                        "specSequence": ""
                    },
                    {
                        "color": "【14 红色】",
                        "image": null,
                        "size": "512GB 【公开版全网通】",
                        "skuId": "10074576723508",
                        "spec": "*",
                        "specName": null,
                        "specSequence": ""
                    },
                    {
                        "color": "【14 黄色】",
                        "image": null,
                        "size": "128GB 【公开版全网通】",
                        "skuId": "10083216248549",
                        "spec": "*",
                        "specName": null,
                        "specSequence": ""
                    },
                    {
                        "color": "【14 黄色】",
                        "image": null,
                        "size": "256GB 【公开版全网通】",
                        "skuId": "10083216248550",
                        "spec": "*",
                        "specName": null,
                        "specSequence": ""
                    },
                    {
                        "color": "【14 黄色】",
                        "image": null,
                        "size": "512GB 【公开版全网通】",
                        "skuId": "10083216248551",
                        "spec": "*",
                        "specName": null,
                        "specSequence": ""
                    }
                ],
                "colorSizeTitle": {
                    "colorName": "规格1",
                    "sizeName": "规格2"
                }
            },
            "skuColorSizeHandler": {
                "colorSet": [
                    "【14 星光白】",
                    "【14 午夜黑】",
                    "【14 紫色】",
                    "【14 蓝色】",
                    "【14 红色】",
                    "【14 黄色】"
                ],
                "currentColorSize": {
                    "color": "【14 蓝色】",
                    "image": null,
                    "size": "128GB 【公开版全网通】",
                    "skuId": "10074576723503",
                    "spec": null,
                    "specName": null,
                    "specSequence": ""
                },
                "sizeSet": [
                    "128GB 【公开版全网通】",
                    "256GB 【公开版全网通】",
                    "512GB 【公开版全网通】"
                ],
                "skuColorSize": {
                    "colorSize": [
                        {
                            "color": "【14 星光白】",
                            "image": null,
                            "size": "128GB 【公开版全网通】",
                            "skuId": "10074576723494",
                            "spec": "*",
                            "specName": null,
                            "specSequence": ""
                        },
                        {
                            "color": "【14 星光白】",
                            "image": null,
                            "size": "256GB 【公开版全网通】",
                            "skuId": "10074576723495",
                            "spec": "*",
                            "specName": null,
                            "specSequence": ""
                        },
                        {
                            "color": "【14 星光白】",
                            "image": null,
                            "size": "512GB 【公开版全网通】",
                            "skuId": "10074576723496",
                            "spec": "*",
                            "specName": null,
                            "specSequence": ""
                        },
                        {
                            "color": "【14 午夜黑】",
                            "image": null,
                            "size": "128GB 【公开版全网通】",
                            "skuId": "10074576723497",
                            "spec": "*",
                            "specName": null,
                            "specSequence": ""
                        },
                        {
                            "color": "【14 午夜黑】",
                            "image": null,
                            "size": "256GB 【公开版全网通】",
                            "skuId": "10074576723498",
                            "spec": "*",
                            "specName": null,
                            "specSequence": ""
                        },
                        {
                            "color": "【14 午夜黑】",
                            "image": null,
                            "size": "512GB 【公开版全网通】",
                            "skuId": "10074576723499",
                            "spec": "*",
                            "specName": null,
                            "specSequence": ""
                        },
                        {
                            "color": "【14 紫色】",
                            "image": null,
                            "size": "128GB 【公开版全网通】",
                            "skuId": "10074576723500",
                            "spec": "*",
                            "specName": null,
                            "specSequence": ""
                        },
                        {
                            "color": "【14 紫色】",
                            "image": null,
                            "size": "256GB 【公开版全网通】",
                            "skuId": "10074576723501",
                            "spec": "*",
                            "specName": null,
                            "specSequence": ""
                        },
                        {
                            "color": "【14 紫色】",
                            "image": null,
                            "size": "512GB 【公开版全网通】",
                            "skuId": "10074576723502",
                            "spec": "*",
                            "specName": null,
                            "specSequence": ""
                        },
                        {
                            "color": "【14 蓝色】",
                            "image": null,
                            "size": "128GB 【公开版全网通】",
                            "skuId": "10074576723503",
                            "spec": "*",
                            "specName": null,
                            "specSequence": ""
                        },
                        {
                            "color": "【14 蓝色】",
                            "image": null,
                            "size": "256GB 【公开版全网通】",
                            "skuId": "10074576723504",
                            "spec": "*",
                            "specName": null,
                            "specSequence": ""
                        },
                        {
                            "color": "【14 蓝色】",
                            "image": null,
                            "size": "512GB 【公开版全网通】",
                            "skuId": "10074576723505",
                            "spec": "*",
                            "specName": null,
                            "specSequence": ""
                        },
                        {
                            "color": "【14 红色】",
                            "image": null,
                            "size": "128GB 【公开版全网通】",
                            "skuId": "10074576723506",
                            "spec": "*",
                            "specName": null,
                            "specSequence": ""
                        },
                        {
                            "color": "【14 红色】",
                            "image": null,
                            "size": "256GB 【公开版全网通】",
                            "skuId": "10074576723507",
                            "spec": "*",
                            "specName": null,
                            "specSequence": ""
                        },
                        {
                            "color": "【14 红色】",
                            "image": null,
                            "size": "512GB 【公开版全网通】",
                            "skuId": "10074576723508",
                            "spec": "*",
                            "specName": null,
                            "specSequence": ""
                        },
                        {
                            "color": "【14 黄色】",
                            "image": null,
                            "size": "128GB 【公开版全网通】",
                            "skuId": "10083216248549",
                            "spec": "*",
                            "specName": null,
                            "specSequence": ""
                        },
                        {
                            "color": "【14 黄色】",
                            "image": null,
                            "size": "256GB 【公开版全网通】",
                            "skuId": "10083216248550",
                            "spec": "*",
                            "specName": null,
                            "specSequence": ""
                        },
                        {
                            "color": "【14 黄色】",
                            "image": null,
                            "size": "512GB 【公开版全网通】",
                            "skuId": "10083216248551",
                            "spec": "*",
                            "specName": null,
                            "specSequence": ""
                        }
                    ],
                    "colorSizeTitle": {
                        "colorName": "规格1",
                        "sizeName": "规格2"
                    }
                },
                "skuColorSizeJson": "{\"colorSize\":[{\"skuId\":\"10074576723494\",\"color\":\"【14 星光白】\",\"size\":\"128GB 【公开版全网通】\",\"spec\":\"*\",\"specSequence\":\"\"},{\"skuId\":\"10074576723495\",\"color\":\"【14 星光白】\",\"size\":\"256GB 【公开版全网通】\",\"spec\":\"*\",\"specSequence\":\"\"},{\"skuId\":\"10074576723496\",\"color\":\"【14 星光白】\",\"size\":\"512GB 【公开版全网通】\",\"spec\":\"*\",\"specSequence\":\"\"},{\"skuId\":\"10074576723497\",\"color\":\"【14 午夜黑】\",\"size\":\"128GB 【公开版全网通】\",\"spec\":\"*\",\"specSequence\":\"\"},{\"skuId\":\"10074576723498\",\"color\":\"【14 午夜黑】\",\"size\":\"256GB 【公开版全网通】\",\"spec\":\"*\",\"specSequence\":\"\"},{\"skuId\":\"10074576723499\",\"color\":\"【14 午夜黑】\",\"size\":\"512GB 【公开版全网通】\",\"spec\":\"*\",\"specSequence\":\"\"},{\"skuId\":\"10074576723500\",\"color\":\"【14 紫色】\",\"size\":\"128GB 【公开版全网通】\",\"spec\":\"*\",\"specSequence\":\"\"},{\"skuId\":\"10074576723501\",\"color\":\"【14 紫色】\",\"size\":\"256GB 【公开版全网通】\",\"spec\":\"*\",\"specSequence\":\"\"},{\"skuId\":\"10074576723502\",\"color\":\"【14 紫色】\",\"size\":\"512GB 【公开版全网通】\",\"spec\":\"*\",\"specSequence\":\"\"},{\"skuId\":\"10074576723503\",\"color\":\"【14 蓝色】\",\"size\":\"128GB 【公开版全网通】\",\"spec\":\"*\",\"specSequence\":\"\"},{\"skuId\":\"10074576723504\",\"color\":\"【14 蓝色】\",\"size\":\"256GB 【公开版全网通】\",\"spec\":\"*\",\"specSequence\":\"\"},{\"skuId\":\"10074576723505\",\"color\":\"【14 蓝色】\",\"size\":\"512GB 【公开版全网通】\",\"spec\":\"*\",\"specSequence\":\"\"},{\"skuId\":\"10074576723506\",\"color\":\"【14 红色】\",\"size\":\"128GB 【公开版全网通】\",\"spec\":\"*\",\"specSequence\":\"\"},{\"skuId\":\"10074576723507\",\"color\":\"【14 红色】\",\"size\":\"256GB 【公开版全网通】\",\"spec\":\"*\",\"specSequence\":\"\"},{\"skuId\":\"10074576723508\",\"color\":\"【14 红色】\",\"size\":\"512GB 【公开版全网通】\",\"spec\":\"*\",\"specSequence\":\"\"},{\"skuId\":\"10083216248549\",\"color\":\"【14 黄色】\",\"size\":\"128GB 【公开版全网通】\",\"spec\":\"*\",\"specSequence\":\"\"},{\"skuId\":\"10083216248550\",\"color\":\"【14 黄色】\",\"size\":\"256GB 【公开版全网通】\",\"spec\":\"*\",\"specSequence\":\"\"},{\"skuId\":\"10083216248551\",\"color\":\"【14 黄色】\",\"size\":\"512GB 【公开版全网通】\",\"spec\":\"*\",\"specSequence\":\"\"}],\"colorSizeTitle\":{\"colorName\":\"规格1\",\"sizeName\":\"规格2\"}}",
                "specSet": [

                ],
                "wareId": "10074576723503"
            },
            "skuSize": [
                {
                    "size": "128GB 【公开版全网通】",
                    "skuId": "10074576723503",
                    "wareId": null
                },
                {
                    "size": "256GB 【公开版全网通】",
                    "skuId": "10074576723504",
                    "wareId": null
                },
                {
                    "size": "512GB 【公开版全网通】",
                    "skuId": "10074576723505",
                    "wareId": null
                }
            ],
            "skuSizeDesc": "尺寸",
            "soldOversea": null,
            "sopSkuList": null,
            "specSize": null,
            "special": false,
            "specialInfo": null,
            "specialPrice": false,
            "startRemainTime": null,
            "stockState": "无货",
            "suit": false,
            "tipNumber": null,
            "tipWhiteBar": null,
            "tokenPrice": null,
            "totalCount": 0,
            "turnToH5": null,
            "type": null,
            "venderId": "13495972",
            "wareGuig": null,
            "wareId": "10074576723503",
            "wareImageLable": null,
            "wareQD": null,
            "wareShouh": null,
            "wareSrc": null,
            "warmTips": [
                {
                    "fontColor": "",
                    "imageUrl": "https://m.360buyimg.com/mobilecms/jfs/t1918/274/1086575987/1970/bc766f2d/5680f4b3N24b48659.png",
                    "text": "支持7天无理由退货"
                }
            ],
            "wdis": null,
            "wdisHtml": null,
            "weightInfo": null,
            "whiteBarInfo": {
                "isAva": true,
                "isBtUser": false,
                "isLogin": false,
                "marketingText": "【点击领取】¥90无门槛立减,分期免息券",
                "planInfos": [

                ],
                "url": "https://bt.jd.com/v3/mobile/rGuide_initGuideMobile?source=JD_H5&refid=1555013349442367232_355&channelName=SXY&newflag=1"
            },
            "wi": null,
            "wmaprice": null,
            "wname": "Apple/ 苹果 iPhone 14 手机5G 双卡双待手机全网通手机 【14 蓝色】 128GB 【公开版全网通】",
            "xnztTips": null,
            "yanBaoInfo": [
                {
                    "productId": 10074576723503,
                    "products": [
                        {
                            "imgurl": "https://img30.360buyimg.com/fuwu/jfs/t1/47359/32/26067/1345/654aff14Fd786674c/f8fd1661f647a33b.png",
                            "platformPid": 10090825492152,
                            "price": "376.0",
                            "sortName": "碎屏保1年"
                        },
                        {
                            "imgurl": "https://img30.360buyimg.com/fuwu/jfs/t1/47359/32/26067/1345/654aff14Fd786674c/f8fd1661f647a33b.png",
                            "platformPid": 10109292315415,
                            "price": "449.0",
                            "sortName": "1年碎屏保"
                        },
                        {
                            "imgurl": "https://img30.360buyimg.com/fuwu/jfs/t1/47359/32/26067/1345/654aff14Fd786674c/f8fd1661f647a33b.png",
                            "platformPid": 10090825124668,
                            "price": "211.0",
                            "sortName": "碎屏保半年"
                        }
                    ],
                    "sortName": "限时特惠"
                },
                {
                    "productId": 10074576723503,
                    "products": [
                        {
                            "imgurl": "https://img30.360buyimg.com/fuwu/jfs/t4543/105/4229305177/1459/b754e0ca/590c0c7dNfb7ce9fe.png",
                            "platformPid": 10109290106754,
                            "price": "709.0",
                            "sortName": "全面维修1年"
                        },
                        {
                            "imgurl": "https://img30.360buyimg.com/fuwu/jfs/t4543/105/4229305177/1459/b754e0ca/590c0c7dNfb7ce9fe.png",
                            "platformPid": 10109289829746,
                            "price": "383.0",
                            "sortName": "全面保修半年"
                        }
                    ],
                    "sortName": "全面保障"
                },
                {
                    "productId": 10074576723503,
                    "products": [
                        {
                            "imgurl": "https://img30.360buyimg.com/fuwu/jfs/t1/14054/23/2862/1644/5c21c040E40d346c0/3a2d672b0ea75934.png",
                            "platformPid": 10091400560457,
                            "price": "64.0",
                            "sortName": "半年延长保"
                        },
                        {
                            "imgurl": "https://img30.360buyimg.com/fuwu/jfs/t1/14054/23/2862/1644/5c21c040E40d346c0/3a2d672b0ea75934.png",
                            "platformPid": 10091401303628,
                            "price": "118.0",
                            "sortName": "1年延长保"
                        }
                    ],
                    "sortName": "延长保障"
                }
            ],
            "yuShouInFo": null,
            "yuyueinfo": null
        },
        "yanbaoServiceInfoUrl": "http://static.360buyimg.com/finance/mobile/insurance/warrantyServiceDesc/html/warrantyExtension.html?mainSkuId=10074576723503&thirdCategoryId=13768",
        "yuYue": {
            "buyEndTime": null,
            "buyStartTime": null,
            "buyTime": null,
            "buyTimeLabel": null,
            "hidePrice": null,
            "hideText": null,
            "intYuyueType": 0,
            "isYuYue": false,
            "isbuyTime": false,
            "loginText": null,
            "yuYue": false,
            "yuYueEndTime": null,
            "yuYueStartTime": null,
            "yuyueNum": 0,
            "yuyueRuleText": null,
            "yuyueShowCode": null,
            "yuyueText": null,
            "yuyueType": null
        },
        "_ddf": "szx",
        "format_check": "ok"
    },
    "error": "",
    "secache": "94f4bd52f778e248737d808843b4fb46",
    "secache_time": 1739944261,
    "secache_date": "2025-02-19 13:51:01",
    "reason": "",
    "error_code": "0000",
    "cache": 0,
    "api_info": "today: max:15000 all[=++];expires:2031-01-01",
    "execution_time": "1.912",
    "server_time": "Beijing/2025-02-19 13:51:01",
    "client_ip": "127.0.0.1",
    "call_args": {
        "num_iid": "10074576723503"
    },
    "api_type": "jd",
    "server_memory": "3.91MB",
    "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-01-20 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(微信同号)