接口使用场景等说明:有时,你需要获得淘宝全网搜索的接口,比如淘客需要淘宝天猫手机端搜索结果,以便和淘客商品对照。那么就需要本接口。
环境 | http 地址 | https 地址 |
---|---|---|
正式环境 | http://api.veapi.cn/tbk/gsearch | 暂无 |
参数名称 | 参数类型 | 必填 | 示例值 | 描述 |
---|---|---|---|---|
vekey | String | 是 | V123M56 | 公共参数,接口秘钥,请在会员中心获取 |
key | String | 是 | 手机 | 要搜索的关键字 |
pageno | Number | 否 | 1 | 页码,默认值1 |
sort | String | 否 | 默认sale | 排序,默认sale表示销量排序,其它可选值:global综合排序,newpro新品排序,priceasc价格升序,pricedesc价值降序 |
ispc | Number | 否 | 默认0 | 默认值0搜索手淘,可选值1则指定使用PC端搜索。 |
mysort | String | 否 | default | 当ispc=1时,本参数有效,替代sort参数,可选值(注意和参数sort不同):default默认排序,sale-desc按销量排序,credit-desc信用排序,price-asc 价格升序, price-desc价格降序。 |
GET/POST http://api.veapi.cn/tbk/gsearch?vekey=xxxx&key=手机
$api="http://api.veapi.cn/tbk/gsearch?vekey=xxxx&key=手机"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $api); //curl_setopt($ch, CURLOPT_POST, true); //POST方式时启用 //curl_setopt($ch, CURLOPT_POSTFIELDS, $postData ); //POST方式时传参 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); //如果使用https请启用 curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); //如果使用https请启用 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true ); //返回数据流,不直接输出 curl_setopt($ch, CURLOPT_ENCODING, 'gzip'); //使用gzip压缩传输让访问更快 curl_setopt($ch, CURLOPT_TIMEOUT, 6); //允许执行的最长秒数。这里设定6S curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5); $result = curl_exec($ch); $info = curl_getinfo($ch); curl_close($ch); echo $result; //返回值
import cn.hutool.http.HttpResponse; import cn.hutool.http.HttpRequest; public class testGetParam { public static void main(String[] args) { // API网址 String url = "http://api.veapi.cn/tbk/gsearch?vekey=xxxx&key=手机"; // JDK 8u111版本后,若目标页面为HTTPS协议,请启用proxy用户密码鉴权 //System.setProperty("jdk.http.auth.tunneling.disabledSchemes", ""); // 发送请求 String result = HttpRequest.get(url) .timeout(10000)//设置超时,毫秒 .execute().body(); System.out.println(result); } }
import requests # 要访问的API网页 target_url = "http://api.veapi.cn/tbk/gsearch?vekey=xxxx&key=手机" # 发送请求 response = requests.get(target_url) # 获取页面内容 if response.status_code == 200: print response.text
参数名称 | 参数类型 | 示例值 | 描述 |
---|---|---|---|
items | String[] | 搜索结果 |
{ "error": "0", "msg": "淘宝全网商品搜索列表查询成功!", "data": { "totalPage": 200, "totalResults": 43669, "page": 1, "pageSize": 10, "items": [ { "title": "【6+128GB立省100元】红米9A 抢购5000mAh大电量大屏幕游戏备用老年人手机xiaomi小米官方旗舰店官网8正品", "price": 599.01, "priceWap": 599, "itemID": "623346006409", "sameCount": 36, "sellerID": "1714128138", "location": "", "sold": 64363, "pic_path": "http://g.search.alicdn.com/img/bao/uploaded/i4/i3/1714128138/O1CN01fz1fDH29zFr7fclS9_!!1714128138.png_60x60.jpg", "isB2c": 1, "shopName": "小米官方旗舰店" }, { "title": "【4月23日10点开抢】Redmi K40 骁龙870智能游戏电竞拍照新品5g手机小米官方旗舰店官网正品redmi红米k40", "price": 2199.01, "priceWap": 1999, "itemID": "637860923312", "sameCount": 0, "sellerID": "1714128138", "location": "", "sold": 66789, "pic_path": "http://g.search2.alicdn.com/img/bao/uploaded/i4/i2/1714128138/O1CN01Zyd5VY29zFr8HQfHt_!!1714128138.png_60x60.jpg", "isB2c": 1, "shopName": "小米官方旗舰店" }, ] } }