接口使用场景等说明:本接口是用于查找某个商品ID时,你可以找出该商品更多的同款或高相似的商品,以及相似的榜单产品推荐给客户。
环境 | http 地址 | https 地址 |
---|---|---|
正式环境 | http://api.veapi.cn/tbk/same_items | 暂无 |
参数名称 | 参数类型 | 必填 | 示例值 | 描述 |
---|---|---|---|---|
vekey | String | 是 | V123M56 | 公共参数,接口秘钥,请在会员中心获取 |
item_id | String | 是 | 33243 | 商品ID,用于相似商品推荐 |
pid | String | 否 | mm_11_22_33 | 推广位 |
res_type | Number | 否 | 默认1 | 可选值:1-同款推荐(默认);2-相似推荐;3-榜单推荐 |
page_size | Number | 否 | 20 | 页大小,默认20,1~100 |
page_no | Number | 否 | 1 | 第几页,默认:1 |
page_url | String | 否 | https://www.xxx.com | (暂不需要)承接页URL |
external_type | Number | 否 | 1 | (暂不需要)调用类型 |
external_id | String | 否 | 123 | (暂不需要)外部ID |
user_sid | String | 否 | 123 | (暂不需要)备案ID |
profit_ratio | String | 否 | 127 | (暂不需要)媒体营销比例,单位为分,127表示1.27% |
client_ip | String | 否 | 127.0.0.1 | (暂不需要)客户端ip地址,部分场景需要 |
GET/POST http://api.veapi.cn/tbk/same_items?vekey=xxx&item_id=23883488910
$api="http://api.veapi.cn/tbk/same_items?vekey=xxx&item_id=23883488910"; $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/same_items?vekey=xxx&item_id=23883488910"; // 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/same_items?vekey=xxx&item_id=23883488910" # 发送请求 response = requests.get(target_url) # 获取页面内容 if response.status_code == 200: print response.text
参数名称 | 参数类型 | 示例值 | 描述 |
---|---|---|---|
is_default | String | false | 推荐信息-是否抄底 |
item_basic_info | String | 商品基本信息 | |
└─ item_id | Number | 687116380139 | 此字段为虚拟的商品id,仅供内部使用,非真实商品ID |
└─ user_type | Number | 1 | 店铺信息-卖家类型,0表示淘宝,1表示天猫,3表示特价版 |
└─ title | String | 短袖t恤女 | 商品标题 |
└─ short_title | String | 短袖t恤 | 商品短标题 |
└─ volume | Number | 15651 | 商品的30天销量 |
└─ pict_url | String | http://...jpg | 商品的图片 |
└─ white_image | String | http://...jpg | 白底图 |
└─ zk_final_price | String | 10.3 | 商品折后价-在线售卖价(元)。若属于预售商品,付定金时间内,在线售卖价=预售价 |
└─ reserve_price | String | 26.5 | 商品原价-一口价通常显示为划线价 |
└─ benefit | String | 不一定有值 | 商品的利益点信息,如商务杯,企业私人定制支持刻字 |
└─ item_url | String | uland.taobao.com.. | 高佣推广链接 |
└─ real_post_fee | Number | 0.00 | 邮费 |
└─ level_one_category_id | Number | 16 | 叶子分类 |
└─ level_one_category_name | String | 女装/女士精品 | 叶子分类名 |
└─ category_id | Number | 50000671 | 子分类 |
└─ category_name | String | T恤 | 子分类名 |
promotion_info | String | 商品的权益信息,例如优惠券、推广链接等 | |
└─ coupon_id | String | 3df55ad.. | 优惠券ID |
└─ coupon_amount | Number | 2 | 优惠券信息-优惠券(元) |
└─ coupon_start_fee | Number | 18.0 | 优惠券信息-优惠券起用门槛,满X元可用。如:满299元减20元 |
└─ coupon_start_time | String | 2019-11-30 00:00:00 | 优惠券起用时间 |
└─ coupon_start_time | String | 2019-11-30 00:00:00 | 优惠券起用时间 |
└─ price_after_coupon | Number | 16.8 | 商品的券后价(单位元) |
activity_info | String | 商品所属活动类信息,例如榜单等 | |
└─ rank_realtime_trade | Number | 榜单实时日销量 | |
publish_info | String | 商品的淘客推广信息 | |
└─ commission_rate | String | 3.0 | 商品的佣金比率(单位%) |
└─ click_url | String | https://... | 商品的推广链接(有券为uland链接,无券为sclick链接),和上面的item_url是一样的 |
└─ fl_price | String | 35 | 媒体营销金额(元) |
shop_info | String | 商品的店铺信息 | |
└─ shop_dsr | Number | 37777 | 店铺DSR评分 |
└─ shop_title | String | xx小店 | 店铺名称 |
└─ user_type | Number | 1 | 店铺信息-卖家类型,0表示淘宝,1表示天猫,3表示特价版 |
{ "error": "0", "msg": "同款商品查询成功!", "is_default": "false", "data": [ { "activity_info": [], "item_basic_info": { "benefit": "", "category_id": 50000671, "category_name": "T恤", "item_id": "687116380139", "item_url": "https://uland.taobao.com/coupon/edetail?e=LLbf1ocSvwalhHvvyUNXZfh8CuWt5YH5OVuOuRD5gLJMmdsrkidbOWgpcJRl3wFwcV%2FlEyhmp8DabAJjl9LutbeJpu0lau43I2dusPv1Pt%2Bha8P8GfkY4NVqM6BWlz38fRaO8nFFGpCO98e%2FpuZIN%2B2ZmzTq0bZPG90UpbOXhXv75BnVYorp2wq7SrTBISmSg2KVncYO%2Bi8E%2BdAb1JoOOptKi5VNf%2BzocktnOtkiN3wZ2U%2BfsqnZzuWqunWzVaUtOe0UJwfaeqZ%2BMcw1PGxgpGuhcEU%2FqjP4&traceId=2135d39316710854361644894d0bd1&&union_lens=lensId%3AMAPI%401671085436%402135d393_0bd1_18514742d69_2f85%4001", "level_one_category_id": 16, "level_one_category_name": "女装/女士精品", "pict_url": "https://img.alicdn.com/bao/uploaded/i1/2212710892183/O1CN01m6Yj1T1RzrOg4U4DK_!!2212710892183.jpg", "provcity": "福建 厦门", "real_post_fee": "0.00", "reserve_price": "18.8", "short_title": "短袖t恤白色紧身纯棉短款打底衫", "small_images": [ "//img.alicdn.com/i1/2212710892183/O1CN0138jjBn1RzrObcMRgT_!!2212710892183.jpg", "//img.alicdn.com/i2/2212710892183/O1CN01yDUZzD1RzrOUfd7hC_!!2212710892183.jpg", "//img.alicdn.com/i1/2212710892183/O1CN01rP4rhT1RzrOdyedyx_!!2212710892183.jpg", "//img.alicdn.com/i3/2212710892183/O1CN012OUHZR1RzrOarfg0I_!!2212710892183.jpg" ], "title": "短袖t恤女白色紧身纯棉短款体恤夏季新款半袖修身内搭打底衫上衣", "user_type": 0, "volume": "1", "white_image": "", "zk_final_price": "18.8" }, "promotion_info": { "coupon_amount": 2, "coupon_end_time": "2023-01-28 23:59:59", "coupon_id": "3f6802bb1d9d4480a03a70f8ca84dcda", "coupon_remain_count": 9886, "coupon_start_fee": "18.0", "coupon_start_time": "2022-11-30 00:00:00", "price_after_coupon": "16.80" }, "publish_info": { "click_url": "https://uland.taobao.com/coupon/edetail?e=LLbf1ocSvwalhHvvyUNXZfh8CuWt5YH5OVuOuRD5gLJMmdsrkidbOWgpcJRl3wFwcV%2FlEyhmp8DabAJjl9LutbeJpu0lau43I2dusPv1Pt%2Bha8P8GfkY4NVqM6BWlz38fRaO8nFFGpCO98e%2FpuZIN%2B2ZmzTq0bZPG90UpbOXhXv75BnVYorp2wq7SrTBISmSg2KVncYO%2Bi8E%2BdAb1JoOOptKi5VNf%2BzocktnOtkiN3wZ2U%2BfsqnZzuWqunWzVaUtOe0UJwfaeqZ%2BMcw1PGxgpGuhcEU%2FqjP4&traceId=2135d39316710854361644894d0bd1&&union_lens=lensId%3AMAPI%401671085436%402135d393_0bd1_18514742d69_2f85%4001", "commission_rate": "3.0" }, "shop_info": { "shop_dsr": 37777, "shop_title": "春爱定制衣橱8的小店", "user_type": 0 } } ], "request_id": "uF1URUw" }