凡邦当当网按关键字搜索dangdang商品 API 返回值说明

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

dangdang.item_search

公共参数

请求地址: https://api-gw.fan-b.com/dangdang/item_search

名称 类型 必须 描述
keyString调用key(必须以GET方式拼接在URL中)
secretString调用密钥
api_nameStringAPI接口名称(包括在请求地址中)[item_search,item_get,item_search_shop等]
cacheString[yes,no]默认yes,将调用缓存的数据,速度比较快
result_typeString[json,jsonu,xml,serialize,var_export]返回数据格式,默认为json,jsonu输出的内容中文可以直接阅读
langString[cn,en,ru]翻译语言,默认cn简体中文
versionStringAPI版本
请求参数

请求参数:q=鞋子&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=

参数说明:q:搜索关键字
cat:分类ID
start_price:开始价格
end_price:结束价格
sort:排序[bid,_bid,bid2,_bid2,_sale,_credit]
  (bid:总价,bid2:商品价格,sale:销量,credit信用,加_前缀为从大到小排序)
page:

响应参数

Version: Date:

名称 类型 必须 示例值 描述
items
items[] 0 按关键字搜索商品
请求示例
	
-- 请求示例 url 默认请求参数已经URL编码处理
curl -i "https://api-gw.fan-b.com/dangdang/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=鞋子&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath="
<?php

// 请求示例 url 默认请求参数已经URL编码处理
// 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.fan-b.com/help/demo/sdk/demo-sign.php
$method = "GET";
$url = "https://api-gw.fan-b.com/dangdang/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=鞋子&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=";
$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" =>"dangdang",
	                "api_name" =>"item_search",
	                "api_params"=>array (
  'q' => '鞋子',
  'start_price' => '',
  'end_price' => '',
  'page' => '',
  'cat' => '',
  'discount_only' => '',
  'sort' => '',
  'page_size' => '',
  'seller_info' => '',
  'nick' => '',
  'ppath' => '',
)
                )
            );
 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/dangdang/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=鞋子&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=";
		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/dangdang/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=鞋子&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=";
	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/dangdang/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=鞋子&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath="
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/dangdang/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=鞋子&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=", 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/dangdang/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({"q":"\u978b\u5b50","start_price":"","end_price":"","page":"","cat":"","discount_only":"","sort":"","page_size":"","seller_info":"","nick":"","ppath":""})// 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":"dangdang",
     "api_name" : "item_search",
     "api_params": {"q":"\u978b\u5b50","start_price":"","end_price":"","page":"","cat":"","discount_only":"","sort":"","page_size":"","seller_info":"","nick":"","ppath":""}//q=鞋子&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=,#具体参数请参考文档说明
     },
     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/dangdang/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=鞋子&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=")
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/dangdang/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=鞋子&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=")!
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/dangdang/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=鞋子&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath="];

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/dangdang/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=鞋子&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=";
  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/dangdang/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=鞋子&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=");
         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/dangdang/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=鞋子&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=", (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/dangdang/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=鞋子&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=")
    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/dangdang/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=鞋子&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=")?;
    let mut content = String::new();
    resp.read_to_string(&mut content)?;

    println!("{}", content);

    Ok(())
}

library(httr)
r <- GET("https://api-gw.fan-b.com/dangdang/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=鞋子&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=")
content(r)
url = "https://api-gw.fan-b.com/dangdang/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=鞋子&start_price=&end_price=&page=&cat=&discount_only=&sort=&page_size=&seller_info=&nick=&ppath=";
response = webread(url);
disp(response);
响应示例
{
  "items": {
    "page": 1,
    "real_total_results": "63906",
    "page_size": "",
    "total_results": "63906",
    "item": [
      {
        "title": " 【双11预估价:73】361度男鞋2024春季新款男子休闲鞋缓震运动鞋轻便系带休闲鞋子572316703",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/47/12/11454461714-1_b_1721553143.jpg",
        "promotion_price": "119.00",
        "price": "119.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11454461714.html",
        "pinglun_num": "119"
      },
      {
        "title": " 【双11预估价:73】萌爪鞋招财猫361女鞋运动鞋2024夏季新款鞋子透气百搭休闲鞋老爹鞋682316711",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/81/10/11455242264-1_b_1.jpg",
        "promotion_price": "119.00",
        "price": "119.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11455242264.html",
        "pinglun_num": "155"
      },
      {
        "title": " 【双11预估价:61】361锦程女鞋运动鞋2024春季新款鞋子休闲鞋高帮情侣厚底百搭板鞋682346612",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/34/26/11713985944-1_b_1709205616.jpg",
        "promotion_price": "99.00",
        "price": "99.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11713985944.html",
        "pinglun_num": "8"
      },
      {
        "title": " 红蜻蜓凉鞋女尖头夏季新款真皮鞋包头松紧带细跟女鞋子断码清仓",
        "supply": "",
        "pic_url": "//img3m0.ddimg.cn/50/16/11780146670-1_b_1721182360.jpg",
        "promotion_price": "79.00",
        "price": "79.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "红蜻蜓旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11780146670.html",
        "pinglun_num": "7"
      },
      {
        "title": " 361度99元2双男女鞋子超级福袋(款式随机发货)",
        "supply": "",
        "pic_url": "//img3m4.ddimg.cn/55/3/11083786714-1_b_1729014458.jpg",
        "promotion_price": "99.00",
        "price": "99.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11083786714.html",
        "pinglun_num": "780"
      },
      {
        "title": " 【双11预估价:117】361男鞋运动鞋2024夏季新款网面透气跑步鞋减震跑鞋薄款鞋子网鞋672322240",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/43/4/11455207774-1_b_1720664269.jpg",
        "promotion_price": "189.00",
        "price": "189.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11455207774.html",
        "pinglun_num": "62"
      },
      {
        "title": " 【双11预估价:59】361度男鞋运动鞋2024春季新款鞋子休闲鞋面包鞋革面厚底板鞋672336604",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/60/23/11681189844-1_b_1704700131.jpg",
        "promotion_price": "95.00",
        "price": "95.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11681189844.html",
        "pinglun_num": "25"
      },
      {
        "title": " 红蜻蜓小白鞋男夏季男鞋软底百搭真皮一脚蹬鞋子休闲板鞋断码清仓",
        "supply": "",
        "pic_url": "//img3m0.ddimg.cn/90/13/11771624790-1_b_1717681392.jpg",
        "promotion_price": "99.00",
        "price": "99.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "红蜻蜓旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11771624790.html",
        "pinglun_num": "4"
      },
      {
        "title": " 【双11预估价:92】361度男鞋时尚运动鞋2024年夏季新款网面老爹鞋男士复古百搭休闲鞋子672426706V",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/79/0/11744602234-1_b_1722482006.jpg",
        "promotion_price": "149.00",
        "price": "149.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11744602234.html",
        "pinglun_num": "31"
      },
      {
        "title": " 【双11预估价:67】361女鞋运动鞋2024秋冬新款轻便网面跑鞋舒适软底鞋子跑步鞋女款682342224",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/4/23/11661968344-1_b_1703697584.jpg",
        "promotion_price": "109.00",
        "price": "109.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11661968344.html",
        "pinglun_num": "26"
      },
      {
        "title": " 红蜻蜓男鞋新款单鞋潮流商务运动鞋子男士休闲正品皮鞋断码清仓",
        "supply": "",
        "pic_url": "//img3m0.ddimg.cn/3/10/11771624010-1_b_1717681923.jpg",
        "promotion_price": "88.00",
        "price": "88.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "红蜻蜓旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11771624010.html",
        "pinglun_num": "4"
      },
      {
        "title": " 红蜻蜓男鞋真皮厚底休闲皮鞋运动板鞋男士爆款鞋子男潮鞋断码清仓",
        "supply": "",
        "pic_url": "//img3m0.ddimg.cn/54/12/11771624160-1_b_1717681081.jpg",
        "promotion_price": "99.00",
        "price": "99.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "红蜻蜓旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11771624160.html",
        "pinglun_num": "6"
      },
      {
        "title": " 红蜻蜓女鞋子新款春秋阿甘鞋软底妈妈透气休闲运动小白鞋断码清仓",
        "supply": "",
        "pic_url": "//img3m0.ddimg.cn/50/27/11742461330-1_b_1713926818.jpg",
        "promotion_price": "88.00",
        "price": "88.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "红蜻蜓旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11742461330.html",
        "pinglun_num": "2"
      },
      {
        "title": " 【双11预估价:61】芋泥361女鞋运动鞋2024夏季新款鞋面鞋子休闲防滑厚底板鞋682326601F",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m0.ddimg.cn/92/22/11488487960-1_b_1689942195.jpg",
        "promotion_price": "99.00",
        "price": "99.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11488487960.html",
        "pinglun_num": "46"
      },
      {
        "title": " 【双11预估价:67】361度女鞋2024冬季新款皮面高帮板鞋休闲鞋子软底运动生活鞋682346613",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/38/23/11628287984-1_b_1702351641.jpg",
        "promotion_price": "109.00",
        "price": "109.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11628287984.html",
        "pinglun_num": ""
      },
      {
        "title": " 【双11预估价:92】361度女鞋运动鞋2024秋冬季新款轻便跑步鞋减震软底跳绳鞋子682342207F",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/60/14/11628883194-1_b_1724743878.jpg",
        "promotion_price": "149.00",
        "price": "149.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11628883194.html",
        "pinglun_num": "114"
      },
      {
        "title": " 【双11预估价:80】361度运动鞋男鞋春季新款男鞋透气鞋子休闲鞋男款网鞋跑步鞋572316764",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/93/5/11454464334-1_b_1724930804.jpg",
        "promotion_price": "129.00",
        "price": "129.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11454464334.html",
        "pinglun_num": "132"
      },
      {
        "title": " 【双11预估价:55】361度女鞋运动鞋2024秋冬季新款鞋子板鞋百搭休闲鞋子女682336607V",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/23/4/11630927804-1_b_1702457804.jpg",
        "promotion_price": "89.00",
        "price": "89.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11630927804.html",
        "pinglun_num": "4"
      },
      {
        "title": " 【双11预估价:86】361度运动鞋男鞋2024夏季软底跑鞋网面透气休闲鞋子减震跑步鞋男款672422231FV",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/63/5/11743813584-1_b_1715330052.jpg",
        "promotion_price": "139.00",
        "price": "139.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11743813584.html",
        "pinglun_num": "15"
      },
      {
        "title": " 【双11预估价:61】361女鞋运动鞋2024新款秋冬皮面鞋子网面轻便休闲跑鞋黑色跑步鞋682342220",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/92/7/11661974174-1_b_1703697843.jpg",
        "promotion_price": "99.00",
        "price": "99.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11661974174.html",
        "pinglun_num": "1"
      },
      {
        "title": " 【双11预估价:110】361男鞋运动鞋春季新款软底缓震跑步鞋轻便回弹慢跑鞋黑色鞋子男672412242",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/11/14/11719600904-1_b_1728528162.jpg",
        "promotion_price": "179.00",
        "price": "179.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11719600904.html",
        "pinglun_num": "16"
      },
      {
        "title": " 【双11预估价:110】悬浮361男鞋运动鞋2024春季新款网面透气跑鞋轻便跑步鞋薄款鞋子672322241",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/94/4/11714247364-1_b_1713710309.jpg",
        "promotion_price": "179.00",
        "price": "179.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11714247364.html",
        "pinglun_num": "48"
      },
      {
        "title": " 【双11预估价:86】361运动鞋女鞋夏季新款网面透气休闲跑鞋轻便鞋子减震跑步鞋女鞋682112206V",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m8.ddimg.cn/69/26/11483272518-1_b_1688884844.jpg",
        "promotion_price": "139.00",
        "price": "139.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11483272518.html",
        "pinglun_num": "56"
      },
      {
        "title": " 【双11预估价:67】轻舒3/361男鞋运动鞋2024夏季新款情侣鞋子网面透气百搭休闲鞋子672316714",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/77/2/11455182464-1_b_1712907339.jpg",
        "promotion_price": "109.00",
        "price": "109.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11455182464.html",
        "pinglun_num": "66"
      },
      {
        "title": " 【双11预估价:110】361女鞋革面运动鞋2024秋冬新款皮面跑鞋轻便休闲跑步鞋跳操鞋子682232212",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/5/36/11306422814-1_b_1722305391.jpg",
        "promotion_price": "179.00",
        "price": "179.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11306422814.html",
        "pinglun_num": "29"
      },
      {
        "title": " 【双11预估价:73】追光/361女运动鞋2024夏季新款复古休闲鞋厚底女鞋鞋子682316708",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/16/14/11455240714-1_b_1.jpg",
        "promotion_price": "119.00",
        "price": "119.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11455240714.html",
        "pinglun_num": "89"
      },
      {
        "title": " 【双11预估价:67】腾云361男鞋运动鞋2024冬季新款透气鞋子面包鞋户外滑板鞋板鞋男672336632",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/31/8/11618509054-1_b_1701862614.jpg",
        "promotion_price": "109.00",
        "price": "109.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11618509054.html",
        "pinglun_num": "11"
      },
      {
        "title": " 【双11预估价:61】361女鞋运动鞋女2024冬季新款皮面保暖老爹鞋休闲跑步鞋子女士682236767F",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/88/16/11372238394-1_b_1.jpg",
        "promotion_price": "99.00",
        "price": "99.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11372238394.html",
        "pinglun_num": "4"
      },
      {
        "title": " 【双11预估价:86】361度男鞋运动鞋2024年夏季透气黑色轻便一脚蹬男士网面老爹鞋子672426709V",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/43/16/11744595664-1_b_1715418958.jpg",
        "promotion_price": "139.00",
        "price": "139.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11744595664.html",
        "pinglun_num": "8"
      },
      {
        "title": " 【双11预估价:86】361男鞋运动鞋2024夏季新款气垫鞋子减震跑步鞋361度网面透气跑鞋671812280",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m2.ddimg.cn/67/27/624804412-1_b_3.jpg",
        "promotion_price": "139.00",
        "price": "139.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/624804412.html",
        "pinglun_num": "476"
      },
      {
        "title": " 【双11预估价:98】361度女鞋运动鞋2024秋冬季新款网面舒适跑步鞋轻便减震软弹跳操鞋子682232210V",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/13/31/11372136844-1_b_1.jpg",
        "promotion_price": "159.00",
        "price": "159.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11372136844.html",
        "pinglun_num": "21"
      },
      {
        "title": " 【双11预估价:80】361度男鞋运动鞋2024夏季新款休闲鞋子百搭情侣板鞋672316624",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/68/5/11470955234-1_b_1.jpg",
        "promotion_price": "129.00",
        "price": "129.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11470955234.html",
        "pinglun_num": "6"
      },
      {
        "title": " 【双11预估价:67】361度女鞋运动鞋2024秋季网面透气鞋子减震防滑鞋露营溯溪鞋女582223302",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m8.ddimg.cn/68/16/11589013328-1_b_1700219720.jpg",
        "promotion_price": "109.00",
        "price": "109.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11589013328.html",
        "pinglun_num": "13"
      },
      {
        "title": " 【双11预估价:117】361度女鞋运动鞋女2024春夏季新款减震跑步鞋子轻便透气休闲跑鞋582322203",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/43/8/11682146464-1_b_1704780597.jpg",
        "promotion_price": "189.00",
        "price": "189.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11682146464.html",
        "pinglun_num": "14"
      },
      {
        "title": " 【双11预估价:86】361女鞋运动鞋2024秋冬新款轻便软底鞋子减震耐磨跑步鞋休闲跑鞋682342210",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/92/4/11663354234-1_b_1703752537.jpg",
        "promotion_price": "139.00",
        "price": "139.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11663354234.html",
        "pinglun_num": "132"
      },
      {
        "title": " 【双11预估价:80】361女鞋运动鞋2024夏季新款鞋子休闲鞋德训鞋平底百搭软底板鞋女682416626",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/21/5/11719562304-1_b_1709998265.jpg",
        "promotion_price": "129.00",
        "price": "129.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11719562304.html",
        "pinglun_num": "14"
      },
      {
        "title": " 【双11预估价:80】361男鞋运动鞋2024夏季新款网面透气休闲鞋子轻便减震跑步鞋男672322218",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/4/22/11477605594-1_b_1.jpg",
        "promotion_price": "129.00",
        "price": "129.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11477605594.html",
        "pinglun_num": "51"
      },
      {
        "title": " 【双11预估价:55】361度女鞋运动鞋2024夏季轻便透气单网面鞋简约潮流一脚蹬跑鞋子682322239",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/88/22/11714752654-1_b_1709440783.jpg",
        "promotion_price": "89.00",
        "price": "89.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11714752654.html",
        "pinglun_num": "58"
      },
      {
        "title": " 【双11预估价:67】361运动鞋女鞋跑步鞋网面透气鞋子女款休闲鞋旅游轻便跑鞋网鞋682112204F",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m6.ddimg.cn/0/8/11375082576-1_b_1.jpg",
        "promotion_price": "109.00",
        "price": "109.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11375082576.html",
        "pinglun_num": "231"
      },
      {
        "title": " 【双11预估价:110】361度男鞋运动鞋2024夏季新款鞋子轻便透气男士休闲鞋时尚百搭潮鞋672326715V",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/44/8/11434498064-1_b_1.jpg",
        "promotion_price": "179.00",
        "price": "179.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11434498064.html",
        "pinglun_num": "10"
      },
      {
        "title": " 【双11预估价:172】361男鞋运动鞋三态跑鞋秋季新款鞋子网面减震科技专业跑步鞋男士572112237",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/16/7/11303601424-1_b_1713338855.jpg",
        "promotion_price": "279.00",
        "price": "279.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11303601424.html",
        "pinglun_num": "103"
      },
      {
        "title": " 【双11预估价:61】361女鞋休闲鞋运动鞋2024年春季新款潮搭透气老爹鞋女生鞋子682216625",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/58/17/11128258804-1_b_5.jpg",
        "promotion_price": "99.00",
        "price": "99.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11128258804.html",
        "pinglun_num": "145"
      },
      {
        "title": " 【双11预估价:104】锦程SE 361板鞋女鞋运动鞋2024夏季新款休闲鞋透气网面鞋子小白鞋682416601V",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/59/13/11744586374-1_b_1715418058.jpg",
        "promotion_price": "169.00",
        "price": "169.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11744586374.html",
        "pinglun_num": "4"
      },
      {
        "title": " 【双11预估价:98】萌爪鞋361女鞋运动鞋2024夏季轻便透气老爹鞋女增高厚底休闲鞋子682416716V",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/90/15/11719610784-1_b_1710016637.jpg",
        "promotion_price": "159.00",
        "price": "159.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11719610784.html",
        "pinglun_num": "4"
      },
      {
        "title": " 【双11预估价:80】361运动鞋女鞋夏季新款网面透气休闲跑步鞋轻便鞋子减震跑步鞋女鞋682112211FV",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/25/10/11411625184-1_b_1715745624.jpg",
        "promotion_price": "129.00",
        "price": "129.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11411625184.html",
        "pinglun_num": "26"
      },
      {
        "title": " 【双11预估价:86】361度女鞋冬季新款加绒二棉鞋子室内室外休闲鞋拖鞋女士保暖毛毛鞋",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/0/12/11628197064-1_b_1702348664.jpg",
        "promotion_price": "139.00",
        "price": "139.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11628197064.html",
        "pinglun_num": "7"
      },
      {
        "title": " 【双11预估价:43】361度女鞋运动鞋女2024秋季新款高帮帆布板鞋轻便百搭休闲鞋子582236603",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/82/0/11609055694-1_b_1701339008.jpg",
        "promotion_price": "69.00",
        "price": "69.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11609055694.html",
        "pinglun_num": "8"
      },
      {
        "title": " 【双11预估价:141】酥饼361度男鞋运动鞋2024年夏季休闲跑步鞋透气防滑厚底休闲鞋子672346772",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/2/26/11713687724-1_b_1709152004.jpg",
        "promotion_price": "229.00",
        "price": "229.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11713687724.html",
        "pinglun_num": "8"
      },
      {
        "title": " 【双11预估价:86】361度男鞋懒人鞋2024夏季新款网面透气轻便运动鞋一脚蹬鞋子开车鞋672422245",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/82/18/11757148804-1_b_1717225227.jpg",
        "promotion_price": "139.00",
        "price": "139.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11757148804.html",
        "pinglun_num": "1"
      },
      {
        "title": " 【双11预估价:104】361度E韧2.0女鞋运动鞋2024夏季新款网面透气跑鞋减震跑步鞋跳绳鞋子682322203",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/52/32/11477616334-1_b_1.jpg",
        "promotion_price": "169.00",
        "price": "169.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11477616334.html",
        "pinglun_num": "33"
      },
      {
        "title": " 【双11预估价:61】361度女鞋运动鞋2024秋冬季新款百搭跑步鞋革面休闲鞋女复古老爹鞋子682346768",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/74/23/11628174764-1_b_1702347677.jpg",
        "promotion_price": "99.00",
        "price": "99.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11628174764.html",
        "pinglun_num": "5"
      },
      {
        "title": " 【双11预估价:110】361女鞋运动鞋2024年冬季新款361度防水皮面保暖休闲鞋软底鞋子女682146721",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/68/23/11054470154-1_b_4.jpg",
        "promotion_price": "179.00",
        "price": "179.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11054470154.html",
        "pinglun_num": "29"
      },
      {
        "title": " 【双11预估价:80】361男鞋运动鞋2024夏季新款鞋子休闲鞋德训鞋平底百搭软底板鞋男672416626",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/57/15/11719598574-1_b_1710011325.jpg",
        "promotion_price": "129.00",
        "price": "129.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11719598574.html",
        "pinglun_num": "10"
      },
      {
        "title": " 【双11预估价:61】361男鞋板鞋高帮2024春夏鞋子百搭运动鞋情侣小白鞋休闲鞋671936634",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m2.ddimg.cn/8/18/624756932-1_b_1711980778.jpg",
        "promotion_price": "99.00",
        "price": "99.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/624756932.html",
        "pinglun_num": "240"
      },
      {
        "title": " 【双11预估价:92】361新款秋季休闲男士慢跑鞋子减震跑步鞋671812249",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/69/7/11014194084-1_b_1729013155.jpg",
        "promotion_price": "149.00",
        "price": "149.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11014194084.html",
        "pinglun_num": "155"
      },
      {
        "title": " 【双11预估价:129】361骨头鞋高帮加绒板鞋冬季新款保暖二棉鞋子板鞋运动鞋女鞋682346603BV",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/93/9/11744589774-1_b_1715418320.jpg",
        "promotion_price": "209.00",
        "price": "209.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11744589774.html",
        "pinglun_num": "3"
      },
      {
        "title": " 【双11预估价:80】361度运动鞋女2024年秋季轻便减震网面舒适软底休闲跑步鞋子682412247",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/94/3/11628162904-1_b_1702347135.jpg",
        "promotion_price": "129.00",
        "price": "129.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11628162904.html",
        "pinglun_num": "1"
      },
      {
        "title": " 【双11预估价:110】361度女鞋2024女子缓震跑步鞋Q弹超4.0缓震回弹针织透气鞋子582322201",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/51/8/11622605694-1_b_1702087231.jpg",
        "promotion_price": "179.00",
        "price": "179.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11622605694.html",
        "pinglun_num": "8"
      },
      {
        "title": " 【双11预估价:86】361度女鞋运动鞋2024年夏季透气网面鞋子轻便老爹鞋女款百搭休闲鞋682426706V",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/49/21/11744511124-1_b_1715412089.jpg",
        "promotion_price": "139.00",
        "price": "139.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11744511124.html",
        "pinglun_num": "21"
      },
      {
        "title": " 【双11预估价:108】爆沫雨屏361男鞋运动鞋2024鞋子男春秋网面透气跑鞋减震跑步鞋男672412234V",
        "supply": "双11提前购,折后满400减150/600减230,21号0点开抢",
        "pic_url": "//img3m4.ddimg.cn/58/4/11723957644-1_b_1710921964.jpg",
        "promotion_price": "175.00",
        "price": "175.00",
        "sales": 0,
        "num_iid": "",
        "sample_id": "",
        "seller_nick": "",
        "shopid": "",
        "shop_href": "",
        "shopname": "361度旗舰店",
        "post_fee": "",
        "area": "",
        "chandi": "",
        "detail_url": "//product.dangdang.com/11723957644.html",
        "pinglun_num": "4"
      }
    ],
    "related_keywords": [],
    "nav_catcamp": [],
    "crumbs": [],
    "breadcrumbs": [],
    "navs": [],
    "data_from": "",
    "url": "",
    "detail_url": "http://search.dangdang.com/?key=鞋子&page_index=1&sort_type=sort_default",
    "keyword": "鞋子",
    "error": "",
    "pagecount": ""
  },
  "error_code": "0000",
  "reason": "ok",
  "secache": "e299413c54b7d53e00a8046fc5bd7bdb",
  "secache_time": 1729649323,
  "secache_date": "2024-10-23 10:08:43",
  "translate_status": "",
  "translate_time": 0,
  "language": {
    "default_lang": "cn",
    "current_lang": "cn"
  },
  "error": "",
  "cache": 0,
  "api_info": "today:5 max:10000 all[2014=5+4+2005];expires:2030-10-30",
  "execution_time": "0.426",
  "server_time": "Beijing/2024-10-23 10:08:43",
  "client_ip": "220.177.180.75",
  "call_args": {
    "q": "鞋子"
  },
  "api_type": "dangdang",
  "translate_language": "zh-CN",
  "translate_engine": "",
  "server_memory": "3.62MB",
  "request_id": "gw-1.67185aaaaec4b",
  "last_id": "3633993236"
}
异常示例
{
  "error": "item-not-found",
  "reason": "商品没找到",
  "error_code": "2000",
  "success": 0,
  "cache": 0,
  "api_info": "today:0 max:10000",
  "execution_time": 0.081,
  "server_time": "Beijing/2020-06-10 23:44:00",
  "call_args": [],
  "api_type": "dangdang",
  "request_id": "1ee0ffc041242"}
相关资料
错误码解释
状态代码(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(微信同号)