万邦搜好货souhaohuo按关键字搜索搜好货商品 API 返回值说明

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

souhaohuo.item_search

公共参数

请求地址: https://api-gw.onebound.cn/souhaohuo/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=女装&page=

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

响应参数

Version: Date:

名称 类型 必须 示例值 描述
items
items[] 0 按关键字搜索商品
请求示例
	
-- 请求示例 url 默认请求参数已经URL编码处理
curl -i "https://api-gw.onebound.cn/souhaohuo/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page="
<?php

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

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

$api_data = $obapi->exec(
                array(
	                "api_type" =>"souhaohuo",
	                "api_name" =>"item_search",
	                "api_params"=>array (
  'q' => '女装',
  'page' => '',
)
                )
            );
 var_dump($api_data);
?>
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.net.URL;
import java.nio.charset.Charset;
import org.json.JSONException;
import org.json.JSONObject;
import java.io.PrintWriter;
import java.net.URLConnection;

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

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

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

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

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

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

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

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

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

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

  char url[] = "https://api-gw.onebound.cn/souhaohuo/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=";
  curl_global_init(CURL_GLOBAL_ALL); 
  curl = curl_easy_init(); 

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

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

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

using namespace std;

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

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

    return realSize;
}

int main(){

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

     if(curl) {

         curl_easy_setopt(curl, CURLOPT_URL, "https://api-gw.onebound.cn/souhaohuo/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=");
         curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
         curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, Data);
         curl_easy_setopt(curl, CURLOPT_WRITEDATA, &readBuffer);

         result = curl_easy_perform(curl);

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

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

https.get("https://api-gw.onebound.cn/souhaohuo/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=", (resp) => {
  let data = "";

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

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

fun main() {
    val url = URL("https://api-gw.onebound.cn/souhaohuo/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=")
    val con = url.openConnection() as HttpURLConnection
    con.requestMethod = "GET"

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

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

    let mut resp = reqwest::get("https://api-gw.onebound.cn/souhaohuo/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=")?;
    let mut content = String::new();
    resp.read_to_string(&mut content)?;

    println!("{}", content);

    Ok(())
}

library(httr)
r <- GET("https://api-gw.onebound.cn/souhaohuo/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=")
content(r)
url = "https://api-gw.onebound.cn/souhaohuo/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=";
response = webread(url);
disp(response);
响应示例
{
  "items": {
    "keyword": "女装",
    "page": 1,
    "error": "0",
    "real_total_results": "8667",
    "page_size": 61,
    "pagecount": "145",
    "item": {
      "1": {
        "title": "女装大衣批发 便宜女装 时尚女装批发 女装呢子大衣 女装厂家货源",
        "pic_url": "https://img1.912688.com/7f704b60-dcc1-4df2-82f5-c9619fb9eb33.jpg",
        "promotion_price": "",
        "product_info": [],
        "price": "16",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "深圳市万鼎服饰有限公司",
          "company_url": "https://wandingfushi.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "广东省 深圳市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/360357590.html"
      },
      "2": {
        "title": "约布21夏款女装货源‬棉麻等‬面料为主外贸服装厂家 品牌服装厂家折扣女装批发 连衣裙批发亚麻女装外套 休闲女装外套 休闲",
        "pic_url": "https://img0.912688.com/79149910-a143-4c4b-afe3-b1086c101969.jpg",
        "promotion_price": "",
        "product_info": [],
        "price": "49",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "淄川服装城爱萍服装店",
          "company_url": "https://za13884629178.912688.com",
          "seller_type": "经销批发",
          "main_products": [],
          "area": "山东省 淄博市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/374017936.html"
      },
      "3": {
        "title": "外贸女装t恤 欧美潮牌女装 女装新款t恤欧美 东莞t恤批发女装 女式T恤批发",
        "pic_url": "https://img2.912688.com/f1194b42-bed7-4a88-acb3-329162e0c635.jpg",
        "promotion_price": "",
        "product_info": [],
        "price": "4",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "东莞市虎门明艺服装店",
          "company_url": "https://yfp888.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "广东省 东莞市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/374899085.html"
      },
      "4": {
        "title": "夏季新款女装短袖纯棉T恤库存服装杂款女装T恤批发2-5元女装上衣",
        "pic_url": "https://img1.912688.com/838fe8d6-723a-4296-82c2-5c968cead7dc.jpg",
        "promotion_price": "",
        "product_info": [],
        "price": "1",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "深圳市万鼎服饰有限公司",
          "company_url": "https://wanding.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "广东省 深圳市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/369648888.html"
      },
      "5": {
        "title": "四川成都职业女装生产定制厂家 职业套装品牌潮流女装 专注女装生产20年美泰来服饰 大型实体服装企业工厂直定超大展厅",
        "pic_url": "https://img3.912688.com/1cf8196e-4194-4e93-86ec-bb1ca536b7de.jpg",
        "promotion_price": "",
        "product_info": [],
        "price": "516",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "成都美泰来服饰有限公司",
          "company_url": "https://13320965368.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "四川省 成都市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/335594340.html"
      },
      "6": {
        "title": "夏季T恤正常宽松韩版女装短袖t恤衫 圆领汗衫便宜批发 靓妹女装货源",
        "pic_url": "https://img7.912688.com/2a16dd5b-1ae7-4f01-83e7-995a76fba78a.jpg",
        "promotion_price": "",
        "product_info": [],
        "price": "3",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "深圳市万鼎服饰有限公司",
          "company_url": "https://shenzhenwandingfushi.912688.com",
          "seller_type": "",
          "main_products": [],
          "area": ""
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/407590881.html"
      },
      "7": {
        "title": "逸熙服饰 工作服女装长袖 女装夏天长袖工作服 加工定做",
        "pic_url": "https://img2.912688.com/ef36410ccdc1f97c09d7d793fa876c44.jpg",
        "promotion_price": "",
        "product_info": [],
        "price": "45",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "长垣市鑫昌运服装销售部",
          "company_url": "https://23901148.912688.com",
          "seller_type": "经销批发",
          "main_products": [],
          "area": "河南省 新乡市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/358960917.html"
      },
      "8": {
        "title": "t恤女装,鹰诺达t恤厂家t恤女装定做款式图片查看",
        "pic_url": "https://img3.912688.com/a6acaf36-2ccd-4206-896b-0d041e54b865.jpg",
        "promotion_price": "",
        "product_info": [],
        "price": "39",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "苏州鹰诺服装有限公司",
          "company_url": "https://19941593308.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "江苏省 苏州市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/374372219.html"
      },
      "9": {
        "title": "便宜女装T恤3.5夏季短袖地摊货上衣 韩版女装纯棉库存服装",
        "pic_url": "https://img6.912688.com/5aee9b9f-7ea6-4153-87c4-d074844402c0.jpg",
        "promotion_price": "",
        "product_info": [],
        "price": "1",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "东莞市虎门明艺服装店",
          "company_url": "https://17722315762.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "广东省 东莞市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/407052329.html"
      },
      "10": {
        "title": "森马夏季新款潮流T恤女装尾货批发品牌折扣女装尾货杂款批发走份",
        "pic_url": "https://img5.912688.com/9854986d-4fb9-4548-bec2-8fb661f0c07c.jpg",
        "promotion_price": "",
        "product_info": [],
        "price": "7",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "深圳市宝安区萌多多服饰厂",
          "company_url": "https://15360437466.912688.com",
          "seller_type": "经销批发",
          "main_products": [],
          "area": "广东省 广州市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/405012386.html"
      },
      "11": {
        "title": "服装吊牌定制 女装吊牌定做童装吊卡制作 标签订制 衣服商标设计制作 女装吊牌印刷 品牌吊牌印刷",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "0.10",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "广州日昇纸制品有限公司",
          "company_url": "https://gzrisun168.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "广东省 广州市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/322747215.html"
      },
      "12": {
        "title": "定制服装店货架大众服饰男女装店展示架服装超市商场专柜 女装高柜工厂",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "\u003Cem class='f26'\u003E面议",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "南昌县后曲王氏展柜厂",
          "company_url": "https://wangshizhangui.912688.com",
          "seller_type": "",
          "main_products": [],
          "area": ""
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/407518932.html"
      },
      "13": {
        "title": "2017夏季新款民族风女装连衣裙 雪纺长裙短袖A字裙汉正街女装批发",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "122",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "安利日用品有限公司",
          "company_url": "https://23163598.912688.com",
          "seller_type": "生产加工",
          "main_products": [],
          "area": "吉林省 白城市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/302979132.html"
      },
      "14": {
        "title": "女装裙装连衣裙女装美丽",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "121",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "杭州网络科技有限公司",
          "company_url": "https://15888826191.912688.com",
          "seller_type": "经销批发",
          "main_products": [],
          "area": "浙江省 杭州市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/406817998.html"
      },
      "15": {
        "title": "纯棉布料批发 斜纹卫衣拉架食毛 男女装休闲针织面料 展宏荣",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "30",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "佛山市禅城区展宏荣针织五金配件厂",
          "company_url": "https://23890337.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "广东省 佛山市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/351752775.html"
      },
      "16": {
        "title": "康利达 塑料服装袋 抽绳束口袋 女装包装袋 彩印效果好",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "0.12",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "南阳市康利达工贸有限公司",
          "company_url": "https://23883845.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "河南省 南阳市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/357591380.html"
      },
      "17": {
        "title": "兴宇皮草派克服外套大毛领中长款品牌折扣女装尾货电商实体批发",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "180",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "故城县兴宇毛皮制品有限公司",
          "company_url": "https://xingyupicao.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "河北省 衡水市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/403043438.html"
      },
      "18": {
        "title": "云南昆明夏季商务polo广告衫空白t恤男装女装翻领短袖工作服文化衫印logo印字",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "9",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "昆明霆尊商贸有限公司",
          "company_url": "https://kmtzsm.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "云南省 昆明市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/373413083.html"
      },
      "19": {
        "title": "新款导轨灯 20W女装服装店射灯 led轨道灯20瓦红木展厅高端路轨射灯",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "54",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "深圳市超麦照明有限公司",
          "company_url": "https://liyaxian1314.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "广东省 深圳市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/349032467.html"
      },
      "20": {
        "title": "加肥加厚加大加长中老年女士羽绒服 女装中长库存清 工作服招标服装 定制冬装劳保服装 红色豆沙色灰色 超级保暖妈妈大衣冬装",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "90",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "常熟市归怡服饰贸易有限公司",
          "company_url": "https://guiyi.912688.com",
          "seller_type": "经销批发",
          "main_products": [],
          "area": "江苏省 苏州市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/408156025.html"
      },
      "21": {
        "title": "穿戴硅胶义乳女用穿戴假胸部假乳房变大伪娘变装男变女用COS女装道具",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "258",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "阜南县尚铖商贸有限公司",
          "company_url": "https://shangchengyongpin.912688.com",
          "seller_type": "经销批发",
          "main_products": [],
          "area": "安徽省 阜阳市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/378828135.html"
      },
      "22": {
        "title": "夏季新款男式polo衫定做 短袖纯棉半袖上衣韩版修身男女装 翻领T恤工服批发 T恤衫定制logo厂家",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "43",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "北京金企定制科技有限公司",
          "company_url": "https://23901039.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "北京市 市辖区"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/315159984.html"
      },
      "23": {
        "title": "牛仔面料 赛络纺斜纹无弹牛仔布5.5oz 时尚童装女装衬衫面料",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "22",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "东莞市鸿之利纺织品有限公司",
          "company_url": "https://18098283998.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "广东省 东莞市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/332992602.html"
      },
      "24": {
        "title": "重庆合川女士职业装定制商务女装重庆定做衬衫厂家夏季职业装定做工厂直销现货批发",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "34",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "重庆雅戈丹盾服饰有限公司",
          "company_url": "https://yagedandun.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "重庆市 市辖区"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/400114436.html"
      },
      "25": {
        "title": "女装飞机盒特硬瓦楞彩盒服装内衣包装纸盒定制订做双面彩色飞机盒",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "0.85",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "佛山市源通纸业有限公司",
          "company_url": "https://ytzy888.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "广东省 佛山市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/364826357.html"
      },
      "26": {
        "title": "穿戴硅胶义乳女用穿戴假胸部假乳房变大伪娘变装男变女用COS女装道具",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "258",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "阜南县尚铖商贸有限公司",
          "company_url": "https://zhubangsheng.912688.com",
          "seller_type": "经销批发",
          "main_products": [],
          "area": "安徽省 阜阳市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/382883535.html"
      },
      "27": {
        "title": "休闲职业套装女装时尚职业装定制 职业装男装品牌 职业女装套装",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "135",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "深圳市咏浩服饰有限公司",
          "company_url": "https://yonghaofushi.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "广东省 深圳市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/372969627.html"
      },
      "28": {
        "title": "PLA服装女装防尘包装袋批发 PLA生物可降解包装自封袋饰品降解自粘包装打样",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "\u003Cem class='f26'\u003E面议",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "东莞市亿领包装科技有限公司",
          "company_url": "https://13826945709.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "广东省 东莞市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/403020496.html"
      },
      "29": {
        "title": "贝昌吊牌厂家  男女装 童装挂牌 专业设计 可烫金烫银 全国包邮 加厚铜版纸 合格证",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "0.06",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "广州贝昌科技有限公司",
          "company_url": "https://13822140274.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "广东省 广州市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/401276556.html"
      },
      "30": {
        "title": "仿真丝法国绒 复合丝色丁缎面雪纺女装面料 202650D",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "9",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "苏州立恩纺织有限公司",
          "company_url": "https://leantex.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "江苏省 苏州市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/315702022.html"
      },
      "31": {
        "title": "商场服装卖场展架 快闪店铝合金 发光女装展架 立欣厂家",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "65",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "佛山立欣铝展展览器材有限公司",
          "company_url": "https://15916056304.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "广东省 佛山市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/404323280.html"
      },
      "32": {
        "title": "鲁岳牌 女装裙装吊牌激光打标机 婚纱礼服商标打码光纤激光打码机",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "14800",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "济南鲁岳数控设备有限公司",
          "company_url": "https://luyueshukong.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "山东省 济南市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/331104019.html"
      },
      "33": {
        "title": "时尚雪纺女装激光镂空机 无纺布激光切割机 运动服打透气孔 裁剪切割激光镭射机   澜速",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "22000",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "东莞市澜速实业有限公司",
          "company_url": "https://23778256.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "广东省 东莞市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/362585738.html"
      },
      "34": {
        "title": "现代简约金色服装架 服装店创意女装挂衣架 商场童装衣服店展示架",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "70",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "泉州跃上贸易有限公司",
          "company_url": "https://13799538116.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "福建省 泉州市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/401127595.html"
      },
      "35": {
        "title": "歌诗曼 保暖羽绒服 秋冬装羽绒服 折扣女装 毛领羽绒服",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "100",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "北京歌诗曼服饰商行",
          "company_url": "https://23965483.912688.com",
          "seller_type": "经销批发",
          "main_products": [],
          "area": "河北省 廊坊市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/338542619.html"
      },
      "36": {
        "title": "女装蕾丝面料复合 白色蕾丝复合印花布 蕾丝花边复合布料",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "1",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "东莞市拓源复合科技有限公司",
          "company_url": "https://23910949.912688.com",
          "seller_type": "生产加工",
          "main_products": [],
          "area": "广东省 东莞市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/321090180.html"
      },
      "37": {
        "title": "现货高端2019夏季女装纯色舞台服表演服批发",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "11",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "灌云县星成服装厂",
          "company_url": "https://xingchneg021935.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "江苏省 连云港市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/322467591.html"
      },
      "38": {
        "title": "供应男装套袋机女装套袋机童服套袋机厂家直销",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "55000",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "上海跋涉智能设备有限公司",
          "company_url": "https://w5xj8u639n71t.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "上海市 市辖区"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/337452211.html"
      },
      "39": {
        "title": "厂家专业生产 抢色单肩包包链条  女装包包搭配装饰多种规格现货",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "3",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "东莞市大湾五金饰品有限公司",
          "company_url": "https://dawan8088.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "广东省 东莞市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/335942117.html"
      },
      "40": {
        "title": "服装吊牌定做 特种纸米白卡吊牌 衣服标签 女装商标挂牌",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "0.02",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "广州尚简印刷纸制品有限公司",
          "company_url": "https://23895066.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "广东省 广州市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/342305338.html"
      },
      "41": {
        "title": "时装绒布激光刻花机 秋冬女装激光烧花 全自动卷料加工机器",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "385000",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "武汉三工激光科技有限公司",
          "company_url": "https://suniclaser666.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "湖北省 武汉市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/362618567.html"
      },
      "42": {
        "title": "东莞迪佳北欧服装店铁艺沙发组合简约现代女装店铺ins美容院单人沙发椅",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "880",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "东莞市迪佳家具有限公司",
          "company_url": "https://djjj888.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "广东省 东莞市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/406555350.html"
      },
      "43": {
        "title": "纯色大王220g纯棉女款短袖POLO衫 纯色女装翻领T恤企业定制工作服",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "22",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "北京世纪弘雅科技文化有限公司",
          "company_url": "https://13718159667.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "北京市 市辖区"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/351305192.html"
      },
      "44": {
        "title": "连衣裙礼服西装数码印花激光切割机 花样女装印花全自动切割机",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "45000",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "东莞市巨茂机电设备有限公司",
          "company_url": "https://b2b-2095607572.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "广东省 东莞市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/92832788.html"
      },
      "45": {
        "title": "塑料服装包装袋批发 透明自封袋厂家定做 女装eva内衣拉链袋定制",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "2",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "温州联尚包装有限公司",
          "company_url": "https://23872686.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "浙江省 温州市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/309551139.html"
      },
      "46": {
        "title": "2020女装批发 帽子卫衣批发 新款女装卫衣 冬季女装卫衣批发 纯棉女装卫衣",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "8",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "深圳市万鼎服饰有限公司",
          "company_url": "https://wandingfushi.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "广东省 深圳市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/360824290.html"
      },
      "47": {
        "title": "女装大衣批发 便宜女装 时尚女装批发 女装呢子大衣 女装厂家货源",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "16",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "深圳市万鼎服饰有限公司",
          "company_url": "https://wandingfushi.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "广东省 深圳市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/360357590.html"
      },
      "48": {
        "title": "女装卫衣批发 连帽女装卫衣 高端女装卫衣  时尚女装卫衣,便宜女装卫衣",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "7",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "深圳市万鼎服饰有限公司",
          "company_url": "https://wandingfushi.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "广东省 深圳市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/358984739.html"
      },
      "49": {
        "title": "女装卫衣批发 厂家女装卫衣批发 新款女装卫衣 连帽女装卫衣 加厚款卫衣",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "10",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "深圳市万鼎服饰有限公司",
          "company_url": "https://wandingfushi.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "广东省 深圳市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/360827126.html"
      },
      "50": {
        "title": "女装卫衣批发 加绒女装卫衣 冬季女装卫衣 厂家女装卫衣货源",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "8",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "深圳市万鼎服饰有限公司",
          "company_url": "https://wandingfushi.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "广东省 深圳市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/360776959.html"
      },
      "51": {
        "title": "贝银21夏款女装亚麻女装 休闲套装女 女装时尚 妈妈装连衣裙韩国品牌折扣女装批发 外贸服装厂家连衣裙批发",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "48",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "淄川服装城爱萍服装店",
          "company_url": "https://za13884629178.912688.com",
          "seller_type": "经销批发",
          "main_products": [],
          "area": "山东省 淄博市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/374934209.html"
      },
      "52": {
        "title": "昆诗兰20秋冬时‬尚女装自信优雅‬商务女装杭州折扣女装  品牌折扣女装直播清仓特价 羽绒连衣裙上衣卫衣T恤打底衫外套毛衣",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "128",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "淄川服装城爱萍服装店",
          "company_url": "https://za13884629178.912688.com",
          "seller_type": "经销批发",
          "main_products": [],
          "area": "山东省 淄博市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/353741025.html"
      },
      "53": {
        "title": "秋冬女装毛衣 韩版女装毛衣 新款女装毛衣批发 尾货女装毛衣批发",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "8",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "深圳市万鼎服饰有限公司",
          "company_url": "https://wandingfushi.912688.com",
          "seller_type": "生产厂家",
          "main_products": [],
          "area": "广东省 深圳市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/361362832.html"
      },
      "54": {
        "title": "‬纳尔布&苒默21夏款广州大‬码女装亚麻女装 休闲套装女 女装时尚 妈妈装连衣裙折扣女装服装 品牌服装厂家体恤衫",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "68",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "淄川服装城爱萍服装店",
          "company_url": "https://za13884629178.912688.com",
          "seller_type": "经销批发",
          "main_products": [],
          "area": "山东省 淄博市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/372358117.html"
      },
      "55": {
        "title": "佐色21秋款杭州品‬牌女装折扣女装批发 外贸服装厂家连衣裙批发亚麻女装 休闲套装女 女装时尚 妈妈装连衣裙",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "65",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "淄川服装城爱萍服装店",
          "company_url": "https://za13884629178.912688.com",
          "seller_type": "经销批发",
          "main_products": [],
          "area": "山东省 淄博市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/378030568.html"
      },
      "56": {
        "title": "茉诗可可21秋冬款深圳‬品‬牌女装外贸服装厂家品牌服装厂家折扣女装批发 连衣裙批发丝绒连衣裙亚麻女装外套休闲女装",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "128",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "淄川服装城爱萍服装店",
          "company_url": "https://za13884629178.912688.com",
          "seller_type": "经销批发",
          "main_products": [],
          "area": "山东省 淄博市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/400211694.html"
      },
      "57": {
        "title": "依维妮20秋冬款香港商务‬女装 女装尾货市场供应韩都衣舍 便宜棉服 折扣女装库存 女装尾货一手货源批发羽绒服双面尼",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "148",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "淄川服装城爱萍服装店",
          "company_url": "https://za13884629178.912688.com",
          "seller_type": "经销批发",
          "main_products": [],
          "area": "山东省 淄博市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/359265915.html"
      },
      "58": {
        "title": "飘蕾21秋款直播女装货源丝绒连衣裙 亚麻女装外套 休闲女装外套 休闲外套折扣女装批发 外贸服装厂家连衣裙批发",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "19",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "淄川服装城爱萍服装店",
          "company_url": "https://za13884629178.912688.com",
          "seller_type": "经销批发",
          "main_products": [],
          "area": "山东省 淄博市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/379040701.html"
      },
      "59": {
        "title": "纳尔布21秋款广州品牌亚麻女装 休闲套装女 女装时尚 妈妈装连衣裙外贸服装厂家女装走份批发折扣女装批发 连衣裙批发",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "59",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "淄川服装城爱萍服装店",
          "company_url": "https://za13884629178.912688.com",
          "seller_type": "经销批发",
          "main_products": [],
          "area": "山东省 淄博市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/379561346.html"
      },
      "60": {
        "title": "注释2021秋冬款深圳‬品‬牌女装亚麻女装外套 休闲女装外套 休闲外套折扣女装批发 外贸服装厂家连衣裙批发",
        "pic_url": "https://style.912688.com/_resources/images/pre-load-200.gif",
        "promotion_price": "",
        "product_info": [],
        "price": "168",
        "sales": 0,
        "sample_id": "",
        "user_num_id": "",
        "seller_info": {
          "nick": "淄川服装城爱萍服装店",
          "company_url": "https://za13884629178.912688.com",
          "seller_type": "经销批发",
          "main_products": [],
          "area": "山东省 淄博市"
        },
        "desc": null,
        "detail_url": "https://www.912688.com/supply/378652484.html"
      }
    },
    "related_keywords": [],
    "nav_catcamp": [],
    "crumbs": [],
    "breadcrumbs": [],
    "navs": [],
    "data_from": "",
    "url": "",
    "detail_url": "https://s.912688.com/prod/dy/search?kw=%E5%A5%B3%E8%A3%85&view=img&pageSize=60&page=1",
    "total_results": "8667",
    "item_weight_update": 0
  },
  "error_code": "0000",
  "reason": "ok",
  "secache": "151256d115bcd683293b2f0f5bdf617b",
  "secache_time": 1729735869,
  "secache_date": "2024-10-24 10:11:09",
  "translate_status": "",
  "translate_time": 0,
  "language": {
    "default_lang": "cn",
    "current_lang": "cn"
  },
  "error": "",
  "cache": 0,
  "api_info": "today:18 max:10000 all[3403=18+18+3367];expires:2030-10-30",
  "execution_time": "0.683",
  "server_time": "Beijing/2024-10-24 10:11:09",
  "client_ip": "220.177.180.75",
  "call_args": {
    "q": "女装"
  },
  "api_type": "souhaohuo",
  "translate_language": "zh-CN",
  "translate_engine": "",
  "server_memory": "3.76MB",
  "request_id": "gw-1.6719acbd4163b",
  "last_id": "3637126507"
}
异常示例
{
  "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": "souhaohuo",
  "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:31424016063142401606(微信同号)