请求地址: https://api-gw.fan-b.com/1688/item_search
请求参数:q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&page_size=40&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter=
参数说明:q:搜索关键字 start_price:开始价格 end_price:结束价格 sort:排序[bid,_bid,_sale,] (bid:总价,sale:销量) page:页数 page_size:每页宝贝数量,默认40 quantityBegin 起订量:数字 filter:totalEpScoreLv1(综合评分),getRate24HLv1(24小时揽收率),具体联系业务
Version: Date:
-- 请求示例 url 默认请求参数已经URL编码处理 curl -i "https://api-gw.fan-b.com/1688/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&page_size=40&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter="
<?php // 请求示例 url 默认请求参数已经URL编码处理 // 本示例代码未加密secret参数明文传输,若要加密请参考:https://open.fan-b.com/help/demo/sdk/demo-sign.php $method = "GET"; $url = "https://api-gw.fan-b.com/1688/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&page_size=40&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter="; $curl = curl_init(); curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_SSL_VERIFYHOST,FALSE); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER,FALSE); curl_setopt($curl, CURLOPT_FAILONERROR, false); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_HEADER, true); curl_setopt($curl, CURLOPT_ENCODING, "gzip"); var_dump(curl_exec($curl)); ?>
<?php //定义缓存目录和引入文件 define("DIR_RUNTIME","runtime/"); define("DIR_ERROR","runtime/"); define("SECACHE_SIZE","0"); //SDK下载地址 https://open.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" =>"1688", "api_name" =>"item_search", "api_params"=>array ( 'q' => '女装', 'start_price' => '0', 'end_price' => '0', 'page' => '1', 'cat' => '0', 'discount_only' => '', 'sort' => '', 'page_size' => '40', 'seller_info' => '', 'nick' => '', 'ppath' => '', 'imgid' => '', 'filter' => '', ) ) ); var_dump($api_data); ?>
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.Reader; import java.net.URL; import java.nio.charset.Charset; import org.json.JSONException; import org.json.JSONObject; import java.io.PrintWriter; import java.net.URLConnection; public class Example { private static String readAll(Reader rd) throws IOException { StringBuilder sb = new StringBuilder(); int cp; while ((cp = rd.read()) != -1) { sb.append((char) cp); } return sb.toString(); } public static JSONObject postRequestFromUrl(String url, String body) throws IOException, JSONException { URL realUrl = new URL(url); URLConnection conn = realUrl.openConnection(); conn.setDoOutput(true); conn.setDoInput(true); PrintWriter out = new PrintWriter(conn.getOutputStream()); out.print(body); out.flush(); InputStream instream = conn.getInputStream(); try { BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8"))); String jsonText = readAll(rd); JSONObject json = new JSONObject(jsonText); return json; } finally { instream.close(); } } public static JSONObject getRequestFromUrl(String url) throws IOException, JSONException { URL realUrl = new URL(url); URLConnection conn = realUrl.openConnection(); InputStream instream = conn.getInputStream(); try { BufferedReader rd = new BufferedReader(new InputStreamReader(instream, Charset.forName("UTF-8"))); String jsonText = readAll(rd); JSONObject json = new JSONObject(jsonText); return json; } finally { instream.close(); } } public static void main(String[] args) throws IOException, JSONException { // 请求示例 url 默认请求参数已经URL编码处理 String url = "https://api-gw.fan-b.com/1688/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&page_size=40&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter="; JSONObject json = getRequestFromUrl(url); System.out.println(json.toString()); } }
//using System.Net.Security; //using System.Security.Cryptography.X509Certificates; private const String method = "GET"; static void Main(string[] args) { String bodys = ""; // 请求示例 url 默认请求参数已经做URL编码 String url = "https://api-gw.fan-b.com/1688/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&page_size=40&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter="; HttpWebRequest httpRequest = null; HttpWebResponse httpResponse = null; if (url.Contains("https://")) { ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult); httpRequest = (HttpWebRequest)WebRequest.CreateDefault(new Uri(url)); } else { httpRequest = (HttpWebRequest)WebRequest.Create(url); } httpRequest.Method = method; if (0 < bodys.Length) { byte[] data = Encoding.UTF8.GetBytes(bodys); using (Stream stream = httpRequest.GetRequestStream()) { stream.Write(data, 0, data.Length); } } try { httpResponse = (HttpWebResponse)httpRequest.GetResponse(); } catch (WebException ex) { httpResponse = (HttpWebResponse)ex.Response; } Console.WriteLine(httpResponse.StatusCode); Console.WriteLine(httpResponse.Method); Console.WriteLine(httpResponse.Headers); Stream st = httpResponse.GetResponseStream(); StreamReader reader = new StreamReader(st, Encoding.GetEncoding("utf-8")); Console.WriteLine(reader.ReadToEnd()); Console.WriteLine("\n"); } public static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors) { return true; }
# coding:utf-8 """ Compatible for python2.x and python3.x requirement: pip install requests """ from __future__ import print_function import requests # 请求示例 url 默认请求参数已经做URL编码 url = "https://api-gw.fan-b.com/1688/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&page_size=40&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter=" headers = { "Accept-Encoding": "gzip", "Connection": "close" } if __name__ == "__main__": r = requests.get(url, headers=headers) json_obj = r.json() print(json_obj)
url := fmt.Sprintf("https://api-gw.fan-b.com/1688/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&page_size=40&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter=", params) req, err := http.NewRequest("GET", url, nil) if err != nil { panic(err) } req.Header.Set("Authorization", apiKey) client := &http.Client{} resp, err := client.Do(req) if err != nil { panic(err) } defer resp.Body.Close() body, err := ioutil.ReadAll(resp.Body) if err != nil { panic(err) } fmt.Println(string(body))
fetch('https://api-gw.fan-b.com/1688/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({"q":"\u5973\u88c5","start_price":"0","end_price":"0","page":"1","cat":"0","discount_only":"","sort":"","page_size":"40","seller_info":"","nick":"","ppath":"","imgid":"","filter":""})// request parameters here }) .then(response => response.json()) .then(data => console.log(data)) .catch(error => console.error(error));
<script src="js/obapi.js"></script> <script type="text/javascript"> obAPI.config({ debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 api_url: "https://api-gw.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":"1688", "api_name" : "item_search", "api_params": {"q":"\u5973\u88c5","start_price":"0","end_price":"0","page":"1","cat":"0","discount_only":"","sort":"","page_size":"40","seller_info":"","nick":"","ppath":"","imgid":"","filter":""}//q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&page_size=40&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter=,#具体参数请参考文档说明 }, function(e){ document.querySelector("#api_data_box").innerHTML=JSON.stringify(e) } ); </script>
require "net/http" require "uri" url = URI("https://api-gw.fan-b.com/1688/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&page_size=40&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter=") http = Net::HTTP.new(url.host, url.port) http.use_ssl = true request = Net::HTTP::Get.new(url) response = http.request(request) puts response.read_body
import Foundation let url = URL(string: "https://api-gw.fan-b.com/1688/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&page_size=40&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter=")! let task = URLSession.shared.dataTask(with: url) { data, response, error in guard let data = data else { print("Error: No data was returned") return } if let data = String(data: data, encoding: .utf8) { print(data) } } task.resume()
NSURL *myUrl = [NSURL URLWithString:@"https://api-gw.fan-b.com/1688/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&page_size=40&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter="]; NSMutableURLRequest *request=[NSMutableURLRequest requestWithURL:myUrl cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:60.0]; [request setHTTPMethod:@"GET"]; NSError *error; NSURLResponse *response; NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error]; NSString *result = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]; NSLog(@"%@",result);
#include<stdio.h> #include <stdlib.h> #include<string.h> #include<curl/curl.h> int main(){ CURL *curl; CURLcode res; struct curl_slist *headers=NULL; char url[] = "https://api-gw.fan-b.com/1688/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&page_size=40&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter="; curl_global_init(CURL_GLOBAL_ALL); curl = curl_easy_init(); if(curl) { curl_easy_setopt(curl, CURLOPT_URL,url); headers = curl_slist_append(headers, "Content-Type: application/json"); curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers); res = curl_easy_perform(curl); if(res != CURLE_OK){ printf("curl_easy_perform(): %s\n",curl_easy_strerror(res)); } curl_easy_cleanup(curl); } curl_global_cleanup(); return 0; }
#include<iostream> #include<string> #include<curl/curl.h> using namespace std; static size_t Data(void *ptr, size_t size, size_t nmemb, string *stream) { std::size_t realSize = size *nmemb; auto *realPtr = reinterpret_cast<char *>(ptr); for (std::size_t i=0;i<realSize;++i) { *(stream) += *(realPtr + i); } return realSize; } int main(){ CURL *curl; CURLcode result; string readBuffer; curl = curl_easy_init(); if(curl) { curl_easy_setopt(curl, CURLOPT_URL, "https://api-gw.fan-b.com/1688/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&page_size=40&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter="); curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L); curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, Data); curl_easy_setopt(curl, CURLOPT_WRITEDATA, &readBuffer); result = curl_easy_perform(curl); if(result == CURLE_OK) { cout<<readBuffer<<endl; }else{ cerr<<"curl_easy error:"<<curl_easy_strerror(result)<<endl; } curl_easy_cleanup(curl); } return 0; }
const https = require("https"); https.get("https://api-gw.fan-b.com/1688/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&page_size=40&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter=", (resp) => { let data = ""; resp.on("data", (chunk) => { data += chunk; }); resp.on("end", () => { console.log(data); }); }).on("error", (err) => { console.log("Error: " + err.message); });
import java.net.HttpURLConnection import java.net.URL fun main() { val url = URL("https://api-gw.fan-b.com/1688/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&page_size=40&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter=") val con = url.openConnection() as HttpURLConnection con.requestMethod = "GET" val responseCode = con.responseCode if (responseCode == HttpURLConnection.HTTP_OK) { // success val inputLine = con.inputStream.bufferedReader().use { it.readText() } println(inputLine) } else { println("GET request failed") } }
use std::io::{self, Read}; use reqwest; fn main() -> io::Result<()> { let mut resp = reqwest::get("https://api-gw.fan-b.com/1688/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&page_size=40&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter=")?; let mut content = String::new(); resp.read_to_string(&mut content)?; println!("{}", content); Ok(()) }
library(httr) r <- GET("https://api-gw.fan-b.com/1688/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&page_size=40&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter=") content(r)
url = "https://api-gw.fan-b.com/1688/item_search/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&start_price=0&end_price=0&page=1&cat=0&discount_only=&sort=&page_size=40&seller_info=no&nick=&seller_info=&nick=&ppath=&imgid=&filter="; response = webread(url); disp(response);
{ "items": { "page": "1", "real_total_results": 1900, "total_results": 1900, "page_size": 19, "page_count": 100, "item": [ { "title": "2019 wish 跨境秋季欧美爆板女装连衣裙 修身显瘦长款花朵吊带裙", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/636/393/14247393636_846235425.jpg", "promotion_price": "17.00", "price": "17.00", "sales": 7000, "num_iid": "45566582412", "seller_nick": "广州伊霏凡服饰有限公司", "tag_percent": "58.6%", "area": "广州市", "detail_url": "https://detail.1688.com/offer/45566582412.html" }, { "title": "连衣裙女2021春夏新款系带泡泡袖显瘦收腰碎花短裙外贸女装批发", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/854/650/22828056458_1179464981.jpg", "promotion_price": "17.00", "price": "17.00", "sales": 140000, "num_iid": "631485240015", "seller_nick": "普宁市燎原五笔蟹服装厂", "tag_percent": "25.5%", "area": "普宁市", "detail_url": "https://detail.1688.com/offer/631485240015.html" }, { "title": "跨境电商ebay热卖欧美女装性感手工钩织流苏休闲套装泳装罩衫 5星", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/875/994/16281499578_212653647.jpg", "promotion_price": "50.00", "price": "50.00", "sales": 5000, "num_iid": "619158432168", "seller_nick": "泉州市众思创进出口贸易有限公司", "tag_percent": "52%", "area": "晋江市", "detail_url": "https://detail.1688.com/offer/619158432168.html" }, { "title": "2021亚马逊跨境欧美春夏女装亚马逊宽松纯色印花无袖休闲套装现货", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN01KeBeft1fDgDqEAbLX_!!1795473973-0-cib.jpg", "promotion_price": "42.00", "price": "42.00", "sales": 50000, "num_iid": "635637669426", "seller_nick": "秦新喜", "tag_percent": "50.7%", "area": "广州市", "detail_url": "https://detail.1688.com/offer/635637669426.html" }, { "title": "2021欧美春夏女装亚马逊独立站wish新品女透明网纱印花性感两件套", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN01jErYe826CIe9HUGim_!!6000000007625-0-cib.jpg", "promotion_price": "37.00", "price": "37.00", "sales": 20000, "num_iid": "635021107526", "seller_nick": "厦门锦之涵服饰有限公司", "tag_percent": "40.9%", "area": "广州市", "detail_url": "https://detail.1688.com/offer/635021107526.html" }, { "title": "实拍韩国2021夏季新款女装韩版宽松几何印花短袖T恤女豹纹休闲裤", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN01vVsWfj222u4XacESW_!!2206515787063-0-cib.jpg", "promotion_price": "34.30", "price": "34.30", "sales": 4000, "num_iid": "637815988990", "seller_nick": "息县韩依时代女装服装批发店", "tag_percent": "6.4%", "area": "广州市", "detail_url": "https://detail.1688.com/offer/637815988990.html" }, { "title": "欧美风2020秋冬女装新款性感修身小背心高腰包臀阔腿裤休闲套装女", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/282/083/21871380282_1453572700.jpg", "promotion_price": "59.90", "price": "59.90", "sales": 9000, "num_iid": "629900610899", "seller_nick": "广州市依米尔服饰有限公司", "tag_percent": "40%", "area": "广州市", "detail_url": "https://detail.1688.com/offer/629900610899.html" }, { "title": "连衣裙女2021春夏新款女装长袖小碎花中长款打底裙两件套现货", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/902/061/23571160209_11863035.jpg", "promotion_price": "35.00", "price": "35.00", "sales": 60, "num_iid": "634431267098", "seller_nick": "东莞市韩寇服饰有限公司", "tag_percent": "26.3%", "area": "东莞市", "detail_url": "https://detail.1688.com/offer/634431267098.html" }, { "title": "X3897跨境新品速卖通亚马逊wish时尚欧美休闲女装针织无袖连体裤", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/621/724/23478427126_892403295.jpg", "promotion_price": "36.00", "price": "36.00", "sales": 3000, "num_iid": "633528105461", "seller_nick": "广州市馨衣竹服饰有限公司", "tag_percent": "52.5%", "area": "广州市", "detail_url": "https://detail.1688.com/offer/633528105461.html" }, { "title": "现货 A8327 欧美女装 2021 春夏纯色多色长袖短裤运动休闲套装", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN01wT5fne1OR6Myiyev6_!!4019511701-0-cib.jpg", "promotion_price": "40.00", "price": "40.00", "sales": 3000, "num_iid": "638597250778", "seller_nick": "深圳市宝安区黛安娜服饰商行", "tag_percent": "51.4%", "area": "广州市", "detail_url": "https://detail.1688.com/offer/638597250778.html" }, { "title": "2021年毛衣女网红韩版女装春季短袖t恤女秋中袖打底针织衫泡泡袖", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN01j8ugIs1a2caa5B5wM_!!3249173272-0-cib.jpg", "promotion_price": "26.00", "price": "26.00", "sales": 40000, "num_iid": "638033144991", "seller_nick": "东莞市大朗千其时装厂", "tag_percent": "13.3%", "area": "东莞市", "detail_url": "https://detail.1688.com/offer/638033144991.html" }, { "title": "S936欧美女装时尚印花比基尼绑带罩衫三件套连衣裙", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN01iCuTMR1D7tzQjEA9t_!!2209219760170-0-cib.jpg", "promotion_price": "44.00", "price": "44.00", "sales": 4000, "num_iid": "638197893788", "seller_nick": "丰泽区晟晴服饰商行", "tag_percent": "51.2%", "area": "泉州市", "detail_url": "https://detail.1688.com/offer/638197893788.html" }, { "title": "2020亚马逊秋季爆款女装礼服 欧美跨境单肩披肩连体裤一件代发", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/811/548/15617845118_1268699109.jpg", "promotion_price": "57.00", "price": "57.00", "sales": 5000, "num_iid": "569999372751", "seller_nick": "深圳市龙岗区嫚姿秀服装厂", "tag_percent": "45.1%", "area": "深圳市", "detail_url": "https://detail.1688.com/offer/569999372751.html" }, { "title": null, "pic_url": null, "promotion_price": null, "price": null, "sales": null, "num_iid": null, "seller_nick": null, "tag_percent": null, "area": null, "detail_url": "https://detail.1688.com/offer/.html" }, { "title": "运动套装女2021春秋新款韩版字母大码女装显瘦立领运动套装两件套", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/681/734/21112437186_208991165.jpg", "promotion_price": "90.00", "price": "90.00", "sales": 130000, "num_iid": "625750406348", "seller_nick": "厦门比尔百姿时装有限公司", "tag_percent": "11.9%", "area": "厦门市", "detail_url": "https://detail.1688.com/offer/625750406348.html" }, { "title": "欧美爆品2021春新款女装长袖后背交叉绑带露脐木耳边T恤短裙套装", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/954/267/18484762459_879671070.jpg", "promotion_price": "34.80", "price": "34.80", "sales": 10000, "num_iid": "624048587609", "seller_nick": "广州简翰服装贸易有限公司", "tag_percent": "32.3%", "area": "广州市", "detail_url": "https://detail.1688.com/offer/624048587609.html" }, { "title": "新品9色冰瓷棉短袖t恤女春夏2021日系圆领修身打底衫直播ins女装", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN01yFlidp1cnSJzO7gIh_!!4233523645-0-cib.jpg", "promotion_price": "23.00", "price": "23.00", "sales": 4000, "num_iid": "638347817559", "seller_nick": "即墨区尼高针织服装厂", "tag_percent": "20.8%", "area": "即墨市", "detail_url": "https://detail.1688.com/offer/638347817559.html" }, { "title": "DN8548亚马逊热卖 欧美女装 跨境外贸夜店性感彩线透视长袖连体裤", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/394/485/21944584493_1571372787.jpg", "promotion_price": "51.00", "price": "51.00", "sales": 10000, "num_iid": "629888122973", "seller_nick": "丰泽区菲妮娜服饰商行", "tag_percent": "55.6%", "area": "泉州市", "detail_url": "https://detail.1688.com/offer/629888122973.html" }, { "title": "潮牌卫衣套装女装2021春季热销新款长袖衫宽松大码毛圈棉圆领上衣", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/046/670/21215076640_842105506.jpg", "promotion_price": "20.00", "price": "20.00", "sales": 20000, "num_iid": "627477888926", "seller_nick": "深圳市福田区依克纯服饰商行", "tag_percent": "5.4%", "area": "深圳市", "detail_url": "https://detail.1688.com/offer/627477888926.html" } ], "data_from": "1688app" }, "error_code": "0000", "reason": "ok", "secache": "f3169c714a064343dac5321a7070e76c", "secache_time": 1614921751, "secache_date": "2021-03-05 13:22:31", "translate_status": "", "translate_time": 0, "language": { "default_lang": "cn", "current_lang": "cn" }, "error": "", "cache": 1, "api_info": "today:19 max:10000", "execution_time": 0.06, "server_time": "Beijing/2021-03-05 15:08:49", "client_ip": "106.6.39.197", "call_args": { "q": "女装", "start_price": "0", "end_price": "0", "page": "1", "cat": "0", "page_size": "40" }, "api_type": "1688", "translate_language": "zh-CN", "translate_engine": "google_cn", "server_memory": "3.57MB", "request_id": "gw-4.6041d901e1918" }
{ "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": "taobao", "request_id": "15ee0ffc041242"}