请求地址: https://api-gw.fan-b.com/1688/item_search_seller
请求参数:q=女装&page=1
参数说明:q:搜索关键词page:页数
Version: Date:
-- 请求示例 url 默认请求参数已经URL编码处理 curl -i "https://api-gw.fan-b.com/1688/item_search_seller/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=1"
<?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_seller/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=1"; $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_seller", "api_params"=>array ( 'q' => '女装', 'page' => '1', ) ) ); 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_seller/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=1"; 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_seller/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=1"; 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_seller/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=1" 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_seller/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=1", 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_seller/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({"q":"\u5973\u88c5","page":"1"})// 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_seller", "api_params": {"q":"\u5973\u88c5","page":"1"}//q=女装&page=1,#具体参数请参考文档说明 }, 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_seller/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=1") 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_seller/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=1")! 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_seller/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=1"]; 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_seller/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=1"; 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_seller/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=1"); 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_seller/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=1", (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_seller/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=1") 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_seller/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=1")?; 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_seller/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=1") content(r)
url = "https://api-gw.fan-b.com/1688/item_search_seller/?key=<您自己的apiKey>&secret=<您自己的apiSecret>&q=女装&page=1"; response = webread(url); disp(response);
{ "items": { "real_total_results": 3467152, "pagecount": 50, "total_results": 500, "keyword": "女装", "page": "1", "page_size": 10, "item": [ { "title": "东莞市普莱雅纺织科技有限公司", "zhuy": "playach.1688.com", "companyid": "2862191083", "memberId": "b2b-28621910832c67b", "seller_nick": "普莱雅服饰", "address": "寮步镇西溪工业管理区", "zhuyin": "针织衫;连衣裙;毛衣;上装;下装", "desc": "东莞市普莱雅纺织科技有限公司坐落于东莞市寮步镇西溪工业区,投资创建于1996年,是一家集设计、生产、加工、销售为一体的现代化服装企业,公司总部设于中国东莞,在香港开设有子公司普莱雅纺织有限公司。主要经营生产和销售中高档男女针织衫、羊毛、羊绒、混纺及部分梭织产品。\r\n 公司打造的园林式工厂,总占地面积20000多平方米,各类先进服装生产设备1000多台套,其中电脑织机856台,无缝电脑自动织机4台,拥有熟练技术员工1000多人,年产量700万件以上。产品90%远销美国、欧洲、澳大利亚等海外市场,少量销往日韩、香港和国内市场。公司本着求实、求严、求强的企业精神,以精湛的技术、真诚的服务和优秀的品质,赢得了国内外客户的广泛赞许和信赖!\r\n 20年来我们一路走一路总结,20年筚路蓝缕,20年风雨历练,有辉煌、有挫折、有重振、有再起,从容而优雅,稳健而成熟。现如今东莞市普莱雅服饰旗下共辖“普莱雅”“叁品社”俩大品牌,集研发、生产、运营、营销为一体,全面构筑企业、员工、供应商、经销商共赢价值链;目前公司具备广东省排名前三的毛织类无缝服装生产能力,并相继取得广交会进出口优质供应商及GMC环球厂家,与众多国际一线服装签订品牌合作协议(合作品牌有Gap、polo、zara、american eagle、优衣库、ck、mango、等),工厂通过ISO9001国际品质管理体系认证并全面实施7S管理,在同行业中脱颖而出,具备遥遥领先的竞争优势。\r\n\r\n 热忱欢迎国内外客户来电来函与我们联系,或来我公司参观指导和商洽业务,携手共赢,共创辉煌。", "item": [ { "title": "普莱雅聚会燕尾服 2021春新款欧美女装纯色短袖t恤圆领针织衫女", "item_id": "545474409545", "price": 55, "salse": 892, "quantity": 8, "detail_url": "https://detail.1688.com/offer/545474409545.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2017/578/318/3984813875_417050929.220x220.jpg" }, { "title": "普莱雅天生张扬OEM利落版型慵懒外套女 2021春季女装针织衫女开衫", "item_id": "638293812060", "price": 83, "salse": 15, "quantity": 14, "detail_url": "https://detail.1688.com/offer/638293812060.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2019/379/133/11804331973_417050929.220x220.jpg" }, { "title": "三合一毛衣女合集 2020年女装新款秋冬基础款高领打底针织衫", "item_id": "630897402477", "price": 49, "salse": 584, "quantity": 13, "detail_url": "https://detail.1688.com/offer/630897402477.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/336/565/22371565633_417050929.220x220.jpg" }, { "title": "女装牛油果绿针织衫2020普莱雅春新款宽松长袖套头针织衫女", "item_id": "600130185617", "price": 100, "salse": 348, "quantity": 9, "detail_url": "https://detail.1688.com/offer/600130185617.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2019/449/204/11726402944_417050929.220x220.jpg" }, { "title": "欧美女士针织衫女2020春季新款纯色修身长袖V领休闲装女", "item_id": "597958172090", "price": 77, "salse": 20866, "quantity": 7, "detail_url": "https://detail.1688.com/offer/597958172090.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2019/355/174/11723471553_417050929.220x220.jpg" } ] }, { "title": "东莞市詹妮优服饰有限公司", "zhuy": "janeyyo.1688.com", "companyid": "2172697291", "memberId": "b2b-2172697291", "seller_nick": "janeyyo", "address": "虎门镇口第一工业区B21幢之一B栋4楼", "zhuyin": "女装连衣裙;雪纺衫衬衣;半身裙;时尚日韩女装", "desc": "东莞市詹妮优服饰有限公司是集开发生产销售为一体的时尚女装公司。公司从选料、设计到制作,每一道工序、每一个细节都精雕细琢,一丝不苟。公司拥有一批有实力的年轻设计师,专业的打版人员,会定期收集时尚圈中最新的时尚流行元素,经公司设计师的理解吸收,力图从产品色彩、款式、图案、面料、裁剪、亦或搭配方式等方面为每位客人提供符合国人身材和审美标准的优质女装。\r\n 与此同时我们还有一批专业而有强烈责任心的生产部门及质检与跟单员,对每一件产品每一道工序都严把质量关,力图为顾客提供精品衣衣。实力雄厚,拥有超1000平方的生产厂房,实力开发团队,摄影团队及紧跟潮流的现货供应仓库\r\n 美丽的未来需要你我共同创造,加入我们吧!我们为您解决开发到成品供应的一条龙服务,詹妮优将与您携手创造辉煌的未来!", "item": [ { "title": "詹妮优2021春夏女装新款韩国东大门女装衬衣女长袖气质通勤女衬衫", "item_id": "625385793426", "price": 68, "salse": 334, "quantity": 175, "detail_url": "https://detail.1688.com/offer/625385793426.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/496/915/20102519694_1205824683.220x220.jpg" }, { "title": "詹妮优2021春夏新款法式衬衣长袖白色棉布刺绣衬衫女外贸女装上衣", "item_id": "636244946704", "price": 78, "salse": 129, "quantity": 102, "detail_url": "https://detail.1688.com/offer/636244946704.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN01mUpObk23jKMtd2RCh_!!2172697291-0-cib.220x220.jpg" }, { "title": "詹妮优 2021春夏新款连衣裙ins风博主气质淑女短裙度假外贸女装", "item_id": "636874984756", "price": 145, "salse": 75, "quantity": 52, "detail_url": "https://detail.1688.com/offer/636874984756.html", "pic_url": "https://img.alicdn.com/imgextra/i3/O1CN01UvTfq91MgYUiXbx5O_!!6000000001464-2-tps-304-304.png" }, { "title": "詹妮优 2021春夏新款长袖衬衣女法式白色宽松女衬衫外贸女装现货", "item_id": "635772543859", "price": 95, "salse": 90, "quantity": 52, "detail_url": "https://detail.1688.com/offer/635772543859.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN016jiw7M23jKMtTwNAj_!!2172697291-0-cib.220x220.jpg" }, { "title": "詹妮优2021春夏新款法式白色棉衬衫女ins风V领长袖气质女上衣外贸", "item_id": "632991111209", "price": 95, "salse": 47, "quantity": 37, "detail_url": "https://detail.1688.com/offer/632991111209.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN01W7yohW23jKMlZGxCX_!!2172697291-0-cib.220x220.jpg" } ] }, { "title": "东莞市朗天服饰有限公司", "zhuy": "langtianfs.1688.com", "companyid": "2205026857", "memberId": "b2b-2205026857", "seller_nick": "东莞市朗天服饰有限公司", "address": "大朗镇 黎贝岭 兴市一路29-31号 朗天服饰有限公司", "zhuyin": "大码女装;大码毛衣;大码针织衫;打底衫;女士针织衫;开衫;套头针织衫;棉开衫;女士外套;披肩外套;上衣;亚麻;羊毛;马海毛;毛衣;毛衫;毛衣外套;针织裙;短款针织;针织外套", "desc": "东莞市朗天服饰有限公司主营女士针织衫、毛衣等产品专业生产加工的公司等。拥有完整、科学的质量管理体系。欢迎各界朋友莅临参观、指导和业务洽谈。公司秉承“顾客是上帝,锐意进取”的经营理念,坚持“客户上帝”的原则为广大客户提供品质的服务。欢迎惠顾!东莞市朗天服饰有限公司主营女士针织衫、毛衣等产品专业生产加工的公司等。拥有完整、科学的质量管理体系。欢迎各界朋友莅临参观、指导和业务洽谈。公司秉承“顾客上帝,锐意进取”的经营理念,坚持“客户上帝”的原则为广大客户提供品质的服务。欢迎惠顾!", "item": [ { "title": "2021春季新款叠穿200斤大码女装胖妹妹宽松针织开衫外套上衣2852", "item_id": "625264663523", "price": 63, "salse": 4235, "quantity": 860, "detail_url": "https://detail.1688.com/offer/625264663523.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/137/753/19839357731_1727120186.220x220.jpg" }, { "title": "针织衫新款2021春季新款大码女装胖mmV领刺绣抽绳宽松打底衫9529", "item_id": "624641571168", "price": 49, "salse": 5727, "quantity": 46, "detail_url": "https://detail.1688.com/offer/624641571168.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/266/567/19013765662_1727120186.220x220.jpg" }, { "title": "大码女装韩版开衫女2021春季新款宽松遮肉针织外套潮ins 女2999", "item_id": "638708183750", "price": 69, "salse": 1460, "quantity": 1304, "detail_url": "https://detail.1688.com/offer/638708183750.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN01ZUhLsS20WYU1mtWw2_!!2205026857-0-cib.220x220.jpg" }, { "title": "大码女装针织吊带连衣裙女2021春季新款胖mm内搭显瘦背心裙2987", "item_id": "638527966404", "price": 53, "salse": 1285, "quantity": 1153, "detail_url": "https://detail.1688.com/offer/638527966404.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN01mukTHY20WYTzHHZ6p_!!2205026857-0-cib.220x220.jpg" }, { "title": "200斤大码女装2021年春夏新款阔腿裤胖妹妹显瘦两件套裤套装2813", "item_id": "626435283238", "price": 101, "salse": 2727, "quantity": 664, "detail_url": "https://detail.1688.com/offer/626435283238.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/575/562/20600265575_1727120186.220x220.jpg" } ] }, { "title": "汕头市潮南区陈店鹏发服装厂", "zhuy": "shop1408553075632.1688.com", "companyid": "2204599425", "memberId": "b2b-2204599425", "seller_nick": "鹏发制衣厂", "address": "池尾长春路康旺堂大药房路口直入30米(唯优品)", "zhuyin": "女式大衣;女式羽绒服;女士T恤;女士卫衣套装;女士连衣裙", "desc": "汕头市潮南区陈店鹏发服装厂是女式T恤,女式休闲套装、女式连衣裙,大衣风衣,羽绒服等产品专业生产加工的公司,拥有完整、科学的质量管理体系。汕头市潮南区陈店鹏发服装厂的诚信、实力和产品质量获得业界的认可。欢迎各界朋友莅临参观、指导和业务洽谈。\r\n本厂专注生产服装已有15年,低,中,高端品质。供货给天猫,C店卖家,超市商场,专卖、零售店(承接一件代发。聚划算,团购等大额批发也可以供应)。我们保证产品质量,厂家直销,从设计-生产-销售一手经办,尺码规格统一,性价比高,每一件产品都是检验合格才会发货。", "item": [ { "title": "韩国短袖T恤女ins潮女装2021夏季新款宽松原宿风休闲上衣一件代发", "item_id": "619920371158", "price": 7.9, "salse": 30452, "quantity": 1716, "detail_url": "https://detail.1688.com/offer/619920371158.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/178/284/16299482871_1830039265.220x220.jpg" }, { "title": "短袖女2020新款夏季白色t恤女V领宽松韩版黑色上衣休闲ins体恤潮", "item_id": "621361167214", "price": 9, "salse": 4224, "quantity": 247, "detail_url": "https://detail.1688.com/offer/621361167214.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/321/139/17161931123_1830039265.220x220.jpg" }, { "title": "小雏菊韩版女装2020新款夏季修身短款短袖T恤女学生上衣一件代发", "item_id": "620218595199", "price": 8, "salse": 34385, "quantity": 10885, "detail_url": "https://detail.1688.com/offer/620218595199.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/306/733/16455337603_1830039265.220x220.jpg" }, { "title": "白色打底衫女秋季2020新款韩版女装洋气内搭纯色学生长袖t恤女潮", "item_id": "623340985532", "price": 8, "salse": 77161, "quantity": 4697, "detail_url": "https://detail.1688.com/offer/623340985532.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/181/936/21119639181_1830039265.220x220.jpg" }, { "title": "批发2020秋季新款韩国东大门卡通学生白色打底内搭上衣长袖t恤女", "item_id": "625738157972", "price": 11, "salse": 10466, "quantity": 1884, "detail_url": "https://detail.1688.com/offer/625738157972.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/217/736/20183637712_1830039265.220x220.jpg" } ] }, { "title": "东莞市杰高服饰有限公司", "zhuy": "jiegaofushi.1688.com", "companyid": "4079552593", "memberId": "b2b-40795525932c494", "seller_nick": "杰高服饰888", "address": "东莞市", "zhuyin": "网红同款女装;明星同款女装;晚晚风女装;BF女装;女装定制", "desc": "东莞市东莞市杰高服饰有限公司是女装、时装、明星同款、网络红人同款、时尚杂志同款等产品专业生产加工的公司,拥有完整、科学的质量管理体系。东莞市杰高服饰有限公司的诚信、实力和产品质量获得业界的认可。从事生产加工女装行业15年,只为做好每一件衣服。欢迎各界朋友莅临参观、指导和业务洽谈。", "item": [ { "title": "秋冬小香风港风复古chic名媛气质职业毛呢网红裙子洋气两件套装女", "item_id": "636260711515", "price": 148, "salse": 68, "quantity": 67, "detail_url": "https://detail.1688.com/offer/636260711515.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN01vewuGA1V1deHrrI1Q_!!4079552593-0-cib.220x220.jpg" }, { "title": "2021年职业小香风炸街时尚西装韩版气质港风复古chic小西装女春秋", "item_id": "635636325629", "price": 125, "salse": 5, "quantity": 3, "detail_url": "https://detail.1688.com/offer/635636325629.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN01btiVHE1V1deM97U5v_!!4079552593-0-cib.220x220.jpg" }, { "title": "时尚套装2021夏季新款女装法式复古格子裙子两件套短袖t恤上衣女", "item_id": "621143591762", "price": 85, "salse": 2, "quantity": 2, "detail_url": "https://detail.1688.com/offer/621143591762.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/162/945/16915549261_889212552.220x220.jpg" }, { "title": "短裙套装2021夏季新款时尚小香风气质上衣服半身裙子洋气两件套女", "item_id": "622477402990", "price": 99, "salse": 6, "quantity": 1, "detail_url": "https://detail.1688.com/offer/622477402990.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/887/043/17794340788_889212552.220x220.jpg" }, { "title": "港风复古女人味包臀牛仔连衣裙大码气质御姐风甜酷女孩帅气穿搭秋", "item_id": "628901121061", "price": 110, "salse": 8, "quantity": 0, "detail_url": "https://detail.1688.com/offer/628901121061.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/943/276/21779672349_889212552.220x220.jpg" } ] }, { "title": "即墨市珍衣奇饰服装厂", "zhuy": "shop82915v376v2m5.1688.com", "companyid": "3328997464", "memberId": "b2b-332899746438c2b", "seller_nick": "青岛珍衣奇饰", "address": "黄河一路163号友和电商产业园6栋1-5", "zhuyin": "莫代尔系列;连衣裙;短外套;防晒衣;打底系列;休闲裤;吊带背心;T恤女;暖倍儿打底系列;加绒裙裤", "desc": "青岛即墨市珍衣奇饰服装厂成立于2015年,经国家相关部门批准注册的服饰企业。现月产量达10万件,目前主要经营打底系列服饰女装,集设计、生产、销售等为一体的服装公司。旗下有以“孚象”“喵衣舍”两大品牌为主打的女装品牌。面料多以莫代尔与纯棉面料,精心打造基础款打底产品。专业生产加工,拥有完整、科学的质量管理体系。即墨市珍衣奇饰服装厂的诚信、实力和产品质量获得业界的认可。目前与多家线上及线下的商户长期合作,我们会在价格与质量上做到性价比最高。欢迎各界朋友来我司莅临参观、指导和业务洽谈,愿我们的合作能够带来互盈。联系电话:15376903032 。QQ:2929209779", "item": [ { "title": "夏季莫代尔打底吊带裙女内搭衬裙中长款宽松无袖背心裙大码连衣裙", "item_id": "554535315260", "price": 13, "salse": 744482, "quantity": 16231, "detail_url": "https://detail.1688.com/offer/554535315260.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2017/207/986/4378689702_710382830.220x220.jpg" }, { "title": "莫代尔长袖t恤女2020秋冬新款女装半高领打底衫内搭修身大码上衣", "item_id": "624469417248", "price": 13, "salse": 121985, "quantity": 10304, "detail_url": "https://detail.1688.com/offer/624469417248.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/054/649/19276946450_710382830.220x220.jpg" }, { "title": "韩版新款莫代尔连衣裙女 中长款纯色大码无袖背心裙 打底吊带裙", "item_id": "563413606257", "price": 13, "salse": 55665, "quantity": 3587, "detail_url": "https://detail.1688.com/offer/563413606257.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/125/581/13661185521_710382830.220x220.jpg" }, { "title": "夏季莫代尔连衣裙女 中长款无袖打底内衬裙 宽松大码外穿背心裙", "item_id": "556572850982", "price": 13, "salse": 189597, "quantity": 2833, "detail_url": "https://detail.1688.com/offer/556572850982.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2017/400/906/4512609004_710382830.220x220.jpg" }, { "title": "2021夏季新款莫代尔长裙短袖宽松开叉v领口袋胖mm大码显瘦连衣裙", "item_id": "571972232629", "price": 20.9, "salse": 68339, "quantity": 1638, "detail_url": "https://detail.1688.com/offer/571972232629.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2018/949/040/9055040949_710382830.220x220.jpg" } ] }, { "title": "珠海花间婷服饰有限公司", "zhuy": "huajianting.1688.com", "companyid": "3823835187", "memberId": "b2b-3823835187c8247", "seller_nick": "zhcn网络", "address": "池尾", "zhuyin": "T桖;卫衣;雪纺衫;套装;针织;毛衣", "desc": "珠海花间婷服饰有限公司是T桖、卫衣、雪纺衫、套装等产品专业生产加工的公司,拥有完整、科学的质量管理体系。珠海花间婷服饰有限公司的诚信、实力和产品质量获得业界的认可。欢迎各界朋友莅临参观、指导和业务洽谈。", "item": [ { "title": "白色打底衫女秋季2020新款韩版女装洋气内搭纯色学生长袖t恤女潮", "item_id": "626986384240", "price": 7.5, "salse": 22801, "quantity": 7164, "detail_url": "https://detail.1688.com/offer/626986384240.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/181/936/21119639181_1830039265.220x220.jpg" }, { "title": "秋冬新款卫衣2020韩版原宿风刺绣字母女装拉链外套大码潮一件代发", "item_id": "625857263723", "price": 16.9, "salse": 4297, "quantity": 2037, "detail_url": "https://detail.1688.com/offer/625857263723.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/183/329/17638923381_803170914.220x220.jpg" }, { "title": "字母刺绣上衣2021夏季新款修身打底女装韩版短袖时尚T恤宽松批发", "item_id": "610738577101", "price": 7.5, "salse": 15177, "quantity": 1190, "detail_url": "https://detail.1688.com/offer/610738577101.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/650/219/13135912056_615902487.220x220.jpg" }, { "title": "条纹T恤女批发2021韩版新款宽松大码女装修身显瘦学生夏地摊女装", "item_id": "585842706228", "price": 5.5, "salse": 5799, "quantity": 1033, "detail_url": "https://detail.1688.com/offer/585842706228.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2019/387/728/10322827783_615902487.220x220.jpg" }, { "title": "2021夏季新款刺绣兔子韩版拼色t恤学生上衣宽松短袖女装一件铺货", "item_id": "589557949949", "price": 9.9, "salse": 25020, "quantity": 662, "detail_url": "https://detail.1688.com/offer/589557949949.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2019/219/277/10644772912_615902487.220x220.jpg" } ] }, { "title": "蚌埠市饰之美服饰有限公司", "zhuy": "shop1388508978313.1688.com", "companyid": "1940993897", "memberId": "b2b-1940993897", "seller_nick": "饰之美旗舰店", "address": "沫河口镇", "zhuyin": "女装;打底裤;T恤", "desc": "蚌埠市饰之美电子商务商行 经销批发的服装、拖鞋、女装畅销消费者市场,在消费者当中享有不错的地位,公司与多家零售商和代理商建立了长期的合作关系。蚌埠市饰之美电子商务商行经销的服装、拖鞋、女装品种齐全、价格合理。蚌埠市饰之美电子商务商行,重信用、守合同、保证产品质量,以多品种经营特色和薄利多销的原则,赢得了广大客户的信任。", "item": [ { "title": "短袖t恤女2021早春新款韩版宽松印花圆领上衣半袖体恤内搭打底衫", "item_id": "615764411753", "price": 9.5, "salse": 44788, "quantity": 795, "detail_url": "https://detail.1688.com/offer/615764411753.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/810/860/14258068018_1499874658.220x220.jpg" }, { "title": "D003 2021新款夏季白色t恤女短袖宽松女士T恤女韩版学生女装", "item_id": "566850540087", "price": 6.4, "salse": 429652, "quantity": 726, "detail_url": "https://detail.1688.com/offer/566850540087.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2018/110/123/8720321011_1499874658.220x220.jpg" }, { "title": "字母刺绣2021夏装韩国新款短袖T恤女修身学生衣服女上衣女装批发", "item_id": "613501783884", "price": 8.5, "salse": 15799, "quantity": 620, "detail_url": "https://detail.1688.com/offer/613501783884.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/565/990/13604099565_1499874658.220x220.jpg" }, { "title": "2021夏季韩国新款宽松磨毛女士短袖T恤女学生衣服上衣ins女装批发", "item_id": "614321523762", "price": 9, "salse": 1168, "quantity": 13, "detail_url": "https://detail.1688.com/offer/614321523762.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/586/212/13823212685_1499874658.220x220.jpg" }, { "title": "糖果色字母印花2021新女式短袖T恤女学生女士休闲上衣服女装批发", "item_id": "614614518978", "price": 9, "salse": 19128, "quantity": 1924, "detail_url": "https://detail.1688.com/offer/614614518978.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/088/481/14068184880_1499874658.220x220.jpg" } ] }, { "title": "广州市海珠区兆尔达制衣厂", "zhuy": "gzzhaoerdazyc.1688.com", "companyid": "2563093558", "memberId": "b2b-2563093558ukyry", "seller_nick": "gzzhaoerdazyc", "address": "龙岗东小区", "zhuyin": "连衣裙;T恤;牛仔裤;休闲裤;衬衣", "desc": "广州市海珠区兆尔达制衣厂是连衣裙、T恤、牛仔裤、休闲裤、衬衣等产品专业生产加工的公司,拥有完整、科学的质量管理体系。广州市海珠区兆尔达制衣厂的诚信、实力和产品质量获得业界的认可。欢迎各界朋友莅临参观、指导和业务洽谈。", "item": [ { "title": "跨境连衣裙2020夏装新款名媛气质修身开叉女装包臀一步裙一件代发", "item_id": "615733961489", "price": 66, "salse": 844, "quantity": 184, "detail_url": "https://detail.1688.com/offer/615733961489.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/903/322/14411223309_2088215775.220x220.jpg" }, { "title": "跨境2020夏季新品韩版气质方领网纱拼接中袖高腰修身包臀连衣裙女", "item_id": "616733705094", "price": 66, "salse": 441, "quantity": 75, "detail_url": "https://detail.1688.com/offer/616733705094.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/286/982/14932289682_2088215775.220x220.jpg" }, { "title": "跨境连衣裙2021夏季新品名媛女装气质修身时尚高腰百褶裙一件代发", "item_id": "616544298668", "price": 68, "salse": 427, "quantity": 59, "detail_url": "https://detail.1688.com/offer/616544298668.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/511/772/14794277115_2088215775.220x220.jpg" }, { "title": "女装连衣裙2020夏装新款韩版气质蕾丝花边镂空收腰大摆型中长裙", "item_id": "594458235656", "price": 72, "salse": 968, "quantity": 41, "detail_url": "https://detail.1688.com/offer/594458235656.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2019/943/388/11050883349_2088215775.220x220.jpg" }, { "title": "跨境连衣裙2021夏装新款韩版气质圆领荷叶袖修身印花蕾丝包臀裙", "item_id": "591185943578", "price": 77, "salse": 1205, "quantity": 29, "detail_url": "https://detail.1688.com/offer/591185943578.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2019/646/038/10723830646_2088215775.220x220.jpg" } ] }, { "title": "芝罘区轩辰制衣厂", "zhuy": "13031619869.1688.com", "companyid": "995076761", "memberId": "dongxuanchen", "seller_nick": "dongxuanchen", "address": "轩辰制衣厂", "zhuyin": "快时尚大码女装;大码连衣裙;大码卫衣;大码女裤;大码T恤;大码棉服;大码针织衫;大码家居服;大码外套;大码半身裙;胖妹妹打底系列;胖妹妹时尚女装;大码汉服;大码内衣内裤;大码旗袍;大码短裤;大码休闲裤;大码牛仔裤;大码套装", "desc": "烟台市芝罘区轩辰制衣厂为山东一家专业生产大码女装的企业,集设计,生产,销售为一体,在消费者当中享有较高的地位,公司与多家零售商和代理商建立了长期稳定的合作关系。本公司生产设计的大码女装品种齐全、价格合理。轩辰制衣实力雄厚,重信用、守合同、保证产品质量,以多品种经营特色和薄利多销的原则,赢得了广大客户的信任。", "item": [ { "title": "2021春装新品胖MM加肥码韩版英伦风小西服外套气质减龄百褶裙A153", "item_id": "586143294632", "price": 51.58, "salse": 15792, "quantity": 363, "detail_url": "https://detail.1688.com/offer/586143294632.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN01AKe7Uf1zoaSVJIqei_!!995076761-0-cib.220x220.jpg" }, { "title": "6702春装新款胖妹妹加肥大码女装英伦中长款风衣外套洋气潮女批发", "item_id": "586993122991", "price": 165.26, "salse": 8585, "quantity": 237, "detail_url": "https://detail.1688.com/offer/586993122991.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/634/050/21046050436_1171374532.220x220.jpg" }, { "title": "2020春装新款胖妹妹mm加肥胖大码女装法式连衣裙雪纺桔梗女裙A235", "item_id": "590663864829", "price": 99, "salse": 3290, "quantity": 184, "detail_url": "https://detail.1688.com/offer/590663864829.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/249/278/14236872942_1171374532.220x220.jpg" }, { "title": "6643春夏胖mm加肥大码长裙微胖女装长款连衣裙度假气质花案沙滩裙", "item_id": "571603671662", "price": 67, "salse": 11351, "quantity": 13, "detail_url": "https://detail.1688.com/offer/571603671662.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/O1CN017v6msS1zoaShwUs0u_!!995076761-0-cib.220x220.jpg" }, { "title": "A319轩辰春装新品加肥加大码休闲西装外套百褶半身裙套装气质女装", "item_id": "624484770851", "price": 51.58, "salse": 4438, "quantity": 1205, "detail_url": "https://detail.1688.com/offer/624484770851.html", "pic_url": "https://cbu01.alicdn.com/img/ibank/2020/137/085/20997580731_1171374532.220x220.jpg" } ] } ] }, "secache": "6901924bdfc83dc318ffdb446e8c9187", "secache_time": 1615281210, "secache_date": "2021-03-09 17:13:30", "translate_status": "", "translate_time": 0, "language": { "default_lang": "cn", "current_lang": "cn" }, "error": "", "reason": "", "error_code": "0000", "cache": 0, "api_info": "today:15 max:10000", "execution_time": 1.306, "server_time": "Beijing/2021-03-09 17:13:30", "client_ip": "106.6.35.144", "call_args": { "keyword": "女装", "page": "1" }, "api_type": "1688", "translate_language": "zh-CN", "translate_engine": "google_cn", "server_memory": "3.79MB", "request_id": "gw-3.60473c396fee8" }
{ "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"}